Skip to content

Latest commit

 

History

History
13 lines (9 loc) · 274 Bytes

git-command.md

File metadata and controls

13 lines (9 loc) · 274 Bytes

Git Commonly used commands

git config --global user.name "DeShuai Ma"
git config --global user.email [email protected]

//add signed-off-by in your commit
git commit -s -m "xxxxxx"

//update commit author
git commit --amend --author="DeShuai Ma <[email protected]>"