From 26ecd94fb4d4426fe1e7c44910304ef462550246 Mon Sep 17 00:00:00 2001 From: "Kenneth Benzie (Benie)" Date: Fri, 15 Feb 2019 17:07:32 +0000 Subject: [PATCH] Update README with latest alias descriptions --- README.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 89511de..c5b163c 100644 --- a/README.md +++ b/README.md @@ -8,15 +8,16 @@ 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`. +* `unamend` applies a negative diff of the last `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`. * `prepare` prepare a branch for merging into another, shorthand for `git rebase --interactive --fork-point`. * `list` list local branches, a shorthand for `git branch`. +* `local` list local branches which don't have remote tracking branches. * `create` creates a new branch, shorthand for `git checkout -b`. * `delete` deletes an existing branch, shorthand for `git branch -D`. -* `name` the name of the current branch. -* `last` the name of the last branch checked out before the current branch. +* `refname` the name of the current branch. * `publish` push and set the tracking branch of a local branch to origin, shorthand for `git push -u origin `. * `unpublish` delete a remote branch, shorthand for `git push origin :`. @@ -25,6 +26,7 @@ rather than remembering the plumbing term of a specific command. * `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 not present on the master branch. +* `touched` lists the files which were touched by a selected commit. * `save` like pushing to the stash but attached to the current branch, shorthand for `git commit -am "temp!"`. * `load` like popping from the stash but attached to the current branch, if