Unverified Commit f6a9a0a4 authored by Marc Cornellà's avatar Marc Cornellà Committed by GitHub
Browse files

git: fix grt on path with spaces

Fixes #7682
parent e59cc948
...@@ -226,7 +226,7 @@ alias grmc='git rm --cached' ...@@ -226,7 +226,7 @@ alias grmc='git rm --cached'
alias grmv='git remote rename' alias grmv='git remote rename'
alias grrm='git remote remove' alias grrm='git remote remove'
alias grset='git remote set-url' alias grset='git remote set-url'
alias grt='cd $(git rev-parse --show-toplevel || echo ".")' alias grt='cd "$(git rev-parse --show-toplevel || echo .)"'
alias gru='git reset --' alias gru='git reset --'
alias grup='git remote update' alias grup='git remote update'
alias grv='git remote -v' alias grv='git remote -v'
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment