今天学到的几个git的使用方法:
(1) Create Git Patch for Specific Commit:
`git format-patch -1 <commit_sha>`
and then apply the git patch:
`git apply <patch file name>`
(2) Change previous commit order/merge commits:
`git rebase -i <commit_sha> <branch name>`
(3) Silently commit to the current commit sha:
`git commit --amend --no-edit`