mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2026-02-13 03:01:32 +01:00
fix gclean (*.BASE.*)
Signed-off-by: Gaetan Semet <gaetan@xeberon.net>
This commit is contained in:
parent
e4786d1153
commit
1279533359
1 changed files with 1 additions and 1 deletions
|
|
@ -251,7 +251,7 @@ compdef _git gke='gitk'
|
||||||
|
|
||||||
# Clean
|
# Clean
|
||||||
# Remove all .orig, .BASE.*, .REMOTE.*, .LOCAL.*, *.BACKUP files
|
# Remove all .orig, .BASE.*, .REMOTE.*, .LOCAL.*, *.BACKUP files
|
||||||
alias gclean=" find . -name '*.orig' -or -name '*.REMOTE.*' -or -name '*.LOCAL.*' -or -name '*.BACKUP.*' | xargs -r rm -v"
|
alias gclean=" find . -name '*.orig' -or -name '*.REMOTE.*' -or -name '*.LOCAL.*' -or -name '*.BACKUP.*' -or -name '*.BASE.*' | xargs -r rm -v"
|
||||||
|
|
||||||
# Edit global Git configuration files
|
# Edit global Git configuration files
|
||||||
alias gitconfig="vim ~/.gitconfig"
|
alias gitconfig="vim ~/.gitconfig"
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue