diff --git a/bashrc b/bashrc index 7c29a95..1ac42a6 100644 --- a/bashrc +++ b/bashrc @@ -105,12 +105,12 @@ alias mountnrg='sudo mount -o loop,offset=307200' # git: alias gss='command git status -s' alias gdf='command git diff' -alias gci='command git commit -a' +alias gci='command git commit' alias gup='command git pull' # svn: alias sss='command svn status' alias sdf='command svn diff' -alias sci='command svn commit -m' +alias sci='command svn commit' alias sup='command svn up' # we want to see exit code on error diff --git a/zshrc b/zshrc index 62836b2..1839060 100644 --- a/zshrc +++ b/zshrc @@ -114,7 +114,7 @@ alias mountnrg='sudo mount -o loop,offset=307200' # git alias gss='command git status -s' alias gdf='command git diff' -alias gci='command git commit -a' +alias gci='command git commit' alias gup='command git pull' # svn alias sss='command svn status' @@ -123,7 +123,7 @@ alias sci='command svn commit' alias sup='command svn up' # ---> global aliases -alias -g L='| less' +alias -g L='| less -R' alias -g H='| head' alias -g T='| tail' alias -g G='| grep'