浏览代码

add gf alias for git flow

yleo77 12 年之前
父节点
当前提交
00848cd8b7
共有 2 个文件被更改,包括 7 次插入1 次删除
  1. 3 0
      plugins/git-flow/git-flow.plugin.zsh
  2. 4 1
      plugins/git/git.plugin.zsh

+ 3 - 0
plugins/git-flow/git-flow.plugin.zsh

@@ -20,6 +20,9 @@
 #     c. Or, use this file as a oh-my-zsh plugin.
 #     c. Or, use this file as a oh-my-zsh plugin.
 #
 #
 
 
+#Alias
+alias gf='git flow'
+
 _git-flow ()
 _git-flow ()
 {
 {
 	local curcontext="$curcontext" state line
 	local curcontext="$curcontext" state line

+ 4 - 1
plugins/git/git.plugin.zsh

@@ -63,7 +63,10 @@ compdef _git gm=git-merge
 alias grh='git reset HEAD'
 alias grh='git reset HEAD'
 alias grhh='git reset HEAD --hard'
 alias grhh='git reset HEAD --hard'
 alias gwc='git whatchanged -p --abbrev-commit --pretty=medium'
 alias gwc='git whatchanged -p --abbrev-commit --pretty=medium'
-alias gf='git ls-files | grep'
+
+#remove the gf alias
+#alias gf='git ls-files | grep'
+
 alias gpoat='git push origin --all && git push origin --tags'
 alias gpoat='git push origin --all && git push origin --tags'
 
 
 # Will cd into the top of the current repository
 # Will cd into the top of the current repository