Fix typos in README file

This commit is contained in:
Kenneth Benzie 2018-08-07 12:54:18 +01:00
parent e96539c093
commit 88e23013ec

View File

@ -19,11 +19,13 @@ than remember the plumbing term of a specific command.
shorthand for `git push -u origin <branch>`. shorthand for `git push -u origin <branch>`.
* `unpublish` delete a remote branch, shorthand for `git push origin :<branch>`. * `unpublish` delete a remote branch, shorthand for `git push origin :<branch>`.
* `force` force push local changes to the remote, shorthand for * `force` force push local changes to the remote, shorthand for
`git push --force-with-lease`.
* `changes` compare the list of commits on the local branch to another branch, * `changes` compare the list of commits on the local branch to another branch,
e.g. when on a feature branch `git changes master` lists the commits which are e.g. when on a feature branch `git changes master` lists the commits which are
not present on the master branch. not present on the master branch.
`git push --force-with-lease`.
* `save` like pushing to the stash but attached to a branch, shorthand for * `save` like pushing to the stash but attached to a branch, shorthand for
`git commit -am temp`. `git commit -am temp`.
* `load` like popping from the stash but attached to a branch, shorthand for * `load` like popping from the stash but attached to a branch, shorthand for
`git reset --mixed HEAD`. `git reset --mixed HEAD`.
[git]: https://git-scm.com