gf
This commit is contained in:
parent
8a99b9e1b7
commit
81616ae770
1 changed files with 13 additions and 2 deletions
|
@ -121,10 +121,21 @@ alias gdt='git difftool --dir-diff'
|
|||
alias gdw='git diff --word-diff-regex=.'
|
||||
|
||||
# fetch from the remote repository
|
||||
alias gf='git fetch --tags --verbose'
|
||||
alias gf="\
|
||||
git \
|
||||
fetch \
|
||||
--verbose \
|
||||
--tags \
|
||||
"
|
||||
|
||||
# fetch from remote repository and prune local orphan branches
|
||||
alias gfp='git fetch --prune --tags --verbose'
|
||||
alias gfp="\
|
||||
git \
|
||||
fetch \
|
||||
--verbose \
|
||||
--tags \
|
||||
--prune \
|
||||
"
|
||||
|
||||
# garbage collect all orphan commits
|
||||
alias ggc="\
|
||||
|
|
Loading…
Reference in a new issue