From 7131c4840bc7d31754688cc5487ae5f15fcf5e59 Mon Sep 17 00:00:00 2001 From: Evan Callicoat Date: Fri, 15 Nov 2013 12:57:54 -0600 Subject: [PATCH] Add interactive commit alias git commit --interactive is incredibly useful for workflows where you make a lot of related changes at once but wish to flexibly commit portions independently, as well as general commit workflow activities. I've been using this alias for years and would like to stop rebasing it when I update prezto :) --- modules/git/alias.zsh | 1 + 1 file changed, 1 insertion(+) diff --git a/modules/git/alias.zsh b/modules/git/alias.zsh index bf6d3644..aa83f058 100644 --- a/modules/git/alias.zsh +++ b/modules/git/alias.zsh @@ -44,6 +44,7 @@ alias gbS='git show-branch -a' # Commit (c) alias gc='git commit --verbose' alias gca='git commit --verbose --all' +alias gci='git commit --interactive' alias gcm='git commit --message' alias gco='git checkout' alias gcO='git checkout --patch'