mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
Merge pull request #7380 from tiborvass/merge-7368
Accept vanilla Linux Foundation signoffs (Closes 7368)
This commit is contained in:
commit
bec676e2de
3 changed files with 8 additions and 20 deletions
|
@ -208,18 +208,16 @@ By making a contribution to this project, I certify that:
|
||||||
|
|
||||||
Then you just add a line to every git commit message:
|
Then you just add a line to every git commit message:
|
||||||
|
|
||||||
Docker-DCO-1.1-Signed-off-by: Joe Smith <joe.smith@email.com> (github: github_handle)
|
Signed-off-by: Joe Smith <joe.smith@email.com>
|
||||||
|
|
||||||
Using your real name (sorry, no pseudonyms or anonymous contributions.)
|
Using your real name (sorry, no pseudonyms or anonymous contributions.)
|
||||||
|
|
||||||
One way to automate this, is customize your git `commit.template` by adding
|
If you set your `user.name` and `user.email` git configs, you can sign your
|
||||||
a `prepare-commit-msg` hook to your Docker repository:
|
commit automatically with `git commit -s`.
|
||||||
|
|
||||||
```
|
Note that the old-style `Docker-DCO-1.1-Signed-off-by: ...` format is still
|
||||||
curl -sSL -o .git/hooks/prepare-commit-msg https://raw.githubusercontent.com/docker/docker/master/contrib/prepare-commit-msg.hook && chmod +x .git/hooks/prepare-commit-msg
|
accepted, so there is no need to update outstanding pull requests to the new
|
||||||
```
|
format right away, but please do adjust your processes for future contributions.
|
||||||
|
|
||||||
* Note: the above script expects to find your GitHub user name in `git config --get github.user`
|
|
||||||
|
|
||||||
#### Small patch exception
|
#### Small patch exception
|
||||||
|
|
||||||
|
|
|
@ -1,10 +0,0 @@
|
||||||
#!/bin/sh
|
|
||||||
# Auto sign all commits to allow them to be used by the Docker project.
|
|
||||||
# see https://github.com/docker/docker/blob/master/CONTRIBUTING.md#sign-your-work
|
|
||||||
#
|
|
||||||
GH_USER=$(git config --get github.user)
|
|
||||||
SOB=$(git var GIT_AUTHOR_IDENT | sed -n "s/^\(.*>\).*$/Docker-DCO-1.1-Signed-off-by: \1 \(github: $GH_USER\)/p")
|
|
||||||
grep -qs "^$SOB" "$1" || {
|
|
||||||
echo
|
|
||||||
echo "$SOB"
|
|
||||||
} >> "$1"
|
|
|
@ -13,8 +13,8 @@ notDocs="$(validate_diff --numstat | awk '$3 !~ /^docs\// { print $3 }')"
|
||||||
githubUsernameRegex='[a-zA-Z0-9][a-zA-Z0-9-]+'
|
githubUsernameRegex='[a-zA-Z0-9][a-zA-Z0-9-]+'
|
||||||
|
|
||||||
# https://github.com/docker/docker/blob/master/CONTRIBUTING.md#sign-your-work
|
# https://github.com/docker/docker/blob/master/CONTRIBUTING.md#sign-your-work
|
||||||
dcoPrefix='Docker-DCO-1.1-Signed-off-by:'
|
dcoPrefix='Signed-off-by:'
|
||||||
dcoRegex="^$dcoPrefix ([^<]+) <([^<>@]+@[^<>]+)> \\(github: ($githubUsernameRegex)\\)$"
|
dcoRegex="^(Docker-DCO-1.1-)?$dcoPrefix ([^<]+) <([^<>@]+@[^<>]+)>( \\(github: ($githubUsernameRegex)\\))?$"
|
||||||
|
|
||||||
check_dco() {
|
check_dco() {
|
||||||
grep -qE "$dcoRegex"
|
grep -qE "$dcoRegex"
|
||||||
|
|
Loading…
Reference in a new issue