Compare commits
1 Commits
929cb896b1
...
74a805017a
Author | SHA1 | Date | |
---|---|---|---|
74a805017a |
@ -8,8 +8,10 @@ rather than remembering the plumbing term of a specific command.
|
||||
* `abandon` abandons all local changes leave a clean repository.
|
||||
* `unstage` unstage staged changes, shorthand for `git reset -q HEAD --`.
|
||||
* `amend` amends the last commit, shorthand for `git commit --amend`.
|
||||
* `fixup` prepare to fixup a commit, shorthand for `git commit --fixup`.
|
||||
* `squash` prepare to squash a commit, shorthand for `git commit --squash`.
|
||||
* `fixup` prepare a fixup commit for use with
|
||||
`git rebase --interactive --autosquash`, shorthand for `git commit --fixup`.
|
||||
* `squash` prepare a squash commit for use with
|
||||
`git rebase --interactive --autosquash`, shorthand for `git commit --squash`.
|
||||
* `prepare` prepare a branch for merging into another, shorthand for
|
||||
`git rebase --interactive --fork-point`.
|
||||
* `list` list local branches, a shorthand for `git branch`.
|
||||
|
Loading…
x
Reference in New Issue
Block a user