From 71e318cb0cae72cc464ed995cfb3d0631a52e3c0 Mon Sep 17 00:00:00 2001 From: Mathias Bynens Date: Mon, 23 Apr 2012 10:50:16 +0200 Subject: .gitconfig: Make `git ca` remove deleted files, too --- .gitconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to '.gitconfig') diff --git a/.gitconfig b/.gitconfig index a58312d..422e082 100644 --- a/.gitconfig +++ b/.gitconfig @@ -10,7 +10,7 @@ # Clone a repository including all submodules c = clone --recursive # Commit all changes - ca = commit -a + ca = !git add . && git add -u && git commit -a # Switch to a branch, creating it if necessary go = checkout -B # Undo a `git push` -- cgit v1.2.3