Answer the question
In order to leave comments, you need to log in
Why might aliases not work?
win7
via search found all .gitconfig in each added
[alias]
i= 'init'
a= ' add *'
c= 'commit -m '
r0= 'commit -m 'r0''
p= 'push'
hist= 'git hist'
st= 'git status'
ga='git add '
gb='git branch '
gc='git commit'
gd='git diff'
gco='git checkout '
gs='git status '
gi= 'git init'
Answer the question
In order to leave comments, you need to log in
Obviously the commands in the second package don't need to contain git if you add them to .gitconfig. Or you need to add them to .bash_aliases (or a similar file if you do not have bash).
For example for .bash_aliases:
alias gs="git status"
alias ga="git add"
alias gb="git branch"
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question