Skip to content

Commit

Permalink
Merge pull request #1841 from ddaza/master
Browse files Browse the repository at this point in the history
fix: Git alias quote style broke functionality
  • Loading branch information
Noah Gorny committed Feb 26, 2021
2 parents 9d7738d + e289549 commit 6093ecb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion aliases/available/git.aliases.bash
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ alias glsum='git diff --name-only --diff-filter=U' # Show unmerged (conflicted)
alias ggui='git gui'

# home
alias ghm='cd '\''$(git rev-parse --show-toplevel)'\''' # Git home
alias ghm='cd "$(git rev-parse --show-toplevel)"' # Git home
# appendage to ghm
if ! _command_exists gh; then
alias gh='ghm'
Expand Down

0 comments on commit 6093ecb

Please sign in to comment.