Merge pull request #213 from plskz/master

Update git.sh
This commit is contained in:
Julien Le Coupanec 2021-06-30 20:32:21 +02:00 committed by GitHub
commit 23488da297
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 0 deletions

View File

@ -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