Skip to content

Commit 1612b43

Browse files
committed
Add --signoff to README.md git commit references
Signed-off-by: Kyle Altendorf <sda@fstab.net>
1 parent eac4e90 commit 1612b43

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -96,11 +96,11 @@ So, whenever we have to make some changes to the code, we should follow these st
9696
1. Create a new branch:
9797
`git checkout -b fix-or-improve-something`
9898
2. Make some changes and the first commit(s) to the branch:
99-
`git commit -m 'What changes we did'`
99+
`git commit --signoff -m 'What changes we did'`
100100
3. Push the branch to GitHub:
101101
`git push origin fix-or-improve-something`
102102
4. Make a pull request on GitHub.
103-
5. Continue making more changes and commits on the branch, with `git commit` and `git push`.
103+
5. Continue making more changes and commits on the branch, with `git commit --signoff` and `git push`.
104104
6. When done, write a comment on the PR asking for a code review.
105105
7. Some other developer will review your changes and accept your PR. The merge should be done with `rebase`, if possible, or with `squash`.
106106
8. The temporary branch on GitHub should be deleted (there is a button for deleting it).

0 commit comments

Comments
 (0)