mirror of
https://github.com/namibia/awesome-cheatsheets.git
synced 2024-11-21 12:25:14 +00:00
Update git.sh
This commit is contained in:
parent
f0d26648ae
commit
2021c90140
@ -41,6 +41,7 @@ git grep --heading --line-number '<string/regex>' # Find lines matching the patt
|
||||
git log --grep='<string/regex>' # Search Commit log
|
||||
|
||||
git commit -m "msg" # commit changes with a msg
|
||||
git commit -m "title" -m "description" # commit changes with a title and description
|
||||
git commit --amend # combine staged changes with the previous commit, or edit the previous commit message without changing its snapshot
|
||||
git commit --amend --no-edit # amends a commit without changing its commit message
|
||||
git commit --amend --author='Author Name <email@address.com>' # Amend the author of a commit
|
||||
|
Loading…
Reference in New Issue
Block a user