gc,gcf
This commit is contained in:
parent
26b40b3bd0
commit
9017b8d905
1 changed files with 10 additions and 2 deletions
|
@ -50,10 +50,18 @@ branch \
|
|||
"
|
||||
|
||||
# clone a remote repository
|
||||
alias gc='git clone'
|
||||
alias gc="\
|
||||
git \
|
||||
clone \
|
||||
"
|
||||
|
||||
# clean untracked files
|
||||
alias gcf='git clean -d --force'
|
||||
alias gcf="\
|
||||
git \
|
||||
clean \
|
||||
-d \
|
||||
--force \
|
||||
"
|
||||
|
||||
# index all and commit
|
||||
alias gacm='git add --all;git commit -m'
|
||||
|
|
Loading…
Reference in a new issue