mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2026-02-20 03:02:29 +01:00
fix bug in alias
Signed-off-by: Gaetan Semet <gaetan@xeberon.net>
This commit is contained in:
parent
e515f6a360
commit
a38d37a34a
1 changed files with 1 additions and 1 deletions
|
|
@ -256,7 +256,7 @@ compdef _git gke='gitk'
|
|||
|
||||
# Clean
|
||||
# Remove all .orig, .BASE.*, .REMOTE.*, .LOCAL.*, *.BACKUP files
|
||||
alias gclean="find $(git rev-parse --show-toplevel) -name '*.orig' -or -name '*.REMOTE.*' -or -name '*.LOCAL.*' -or -name '*.BACKUP.*' -or -name '*.BASE.*' | xargs -r rm -v"
|
||||
alias gclean='find $(git rev-parse --show-toplevel) -name "*.orig" -or -name "*.REMOTE.*" -or -name "*.LOCAL.*" -or -name "*.BACKUP.*" -or -name "*.BASE.*" | xargs -r rm -v'
|
||||
alias gcleanreset='(cd $(git rev-parse --show-toplevel) && git reset --hard && git clean -dfx)'
|
||||
|
||||
# Edit global Git configuration files
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue