Added git fetch --all alias
This commit is contained in:
@@ -43,6 +43,7 @@ git_diff_cached_alias="gdc"
|
|||||||
# 3. Standard commands
|
# 3. Standard commands
|
||||||
git_clone_alias="gcl"
|
git_clone_alias="gcl"
|
||||||
git_fetch_alias="gf"
|
git_fetch_alias="gf"
|
||||||
|
git_fetch_all_alias="gfa"
|
||||||
git_fetch_and_rebase_alias="gfr"
|
git_fetch_and_rebase_alias="gfr"
|
||||||
git_pull_alias="gpl"
|
git_pull_alias="gpl"
|
||||||
git_push_alias="gps"
|
git_push_alias="gps"
|
||||||
|
|||||||
@@ -83,6 +83,7 @@ __git_alias "$git_show_alias" "git" 'show'
|
|||||||
|
|
||||||
|
|
||||||
# Compound/complex commands
|
# Compound/complex commands
|
||||||
|
_alias $git_fetch_all_alias="git fetch --all"
|
||||||
_alias $git_pull_then_push_alias="git pull && git push"
|
_alias $git_pull_then_push_alias="git pull && git push"
|
||||||
_alias $git_fetch_and_rebase_alias='git fetch && git rebase'
|
_alias $git_fetch_and_rebase_alias='git fetch && git rebase'
|
||||||
_alias $git_commit_amend_alias='git commit --amend'
|
_alias $git_commit_amend_alias='git commit --amend'
|
||||||
|
|||||||
Reference in New Issue
Block a user