gcf
This commit is contained in:
parent
1ddba59759
commit
a92770848e
1 changed files with 7 additions and 12 deletions
|
@ -73,19 +73,14 @@ gbs() {
|
|||
"${@}"
|
||||
}
|
||||
|
||||
# clone a remote repository
|
||||
alias gc="\
|
||||
git \
|
||||
clone \
|
||||
"
|
||||
|
||||
# clean untracked files
|
||||
alias gcf="\
|
||||
git \
|
||||
clean \
|
||||
-d \
|
||||
--force \
|
||||
"
|
||||
gcf() {
|
||||
git \
|
||||
clean \
|
||||
-d \
|
||||
--force \
|
||||
"${@}"
|
||||
}
|
||||
|
||||
# commit the index
|
||||
alias gcm="\
|
||||
|
|
Loading…
Reference in a new issue