Merge pull request #206 from eballerini/apply-alias

added 'git apply' alias

Don't see a completely compelling case where `git apply` really benefits from having access to scm_breeze index shortcuts. `gapp` alias could be pruned in the future.
This commit is contained in:
Willa D
2016-08-28 15:09:44 -04:00
committed by GitHub
2 changed files with 2 additions and 0 deletions

View File

@@ -153,6 +153,7 @@ if [ "$git_setup_aliases" = "yes" ]; then
__git_alias "$git_submodule_update_alias" 'git' 'submodule' 'update' '--init'
__git_alias "$git_submodule_update_rec_alias" 'git' 'submodule' 'update' '--init' '--recursive'
__git_alias "$git_whatchanged_alias" 'git' 'whatchanged'
__git_alias "$git_apply_alias" 'git' 'apply'
# Compound/complex commands
_alias "$git_fetch_all_alias" 'git fetch --all'