From 4daba2f2c078e891aa1183eb7547bcbf23f92aa6 Mon Sep 17 00:00:00 2001 From: Mathias Bynens Date: Mon, 4 Jun 2012 16:37:45 +0200 Subject: .gitconfig: Add `tags`, `branches` and `remotes` aliases --- .gitconfig | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.gitconfig b/.gitconfig index fdf1dcf..c74ff18 100644 --- a/.gitconfig +++ b/.gitconfig @@ -13,6 +13,10 @@ ca = !git add . && git add -u && git commit -a # Switch to a branch, creating it if necessary go = checkout -B + # Show verbose output about tags, branches or remotes + tags = tag -l + branches = branch -a + remotes = remote -v # Credit an author on the latest commit credit = "!f() { git commit --amend --author \"$1 <$2>\" -C HEAD; }; f" # Undo a `git push` -- cgit v1.2.3