[git] Repair gCl alias

The no-pager option should be set on `git` and not `git diff`.

Closes #246
This commit is contained in:
Oskar Grunning 2018-02-15 18:44:13 +01:00 committed by Eric Nielsen
parent de045ab70e
commit 6465970530
1 changed files with 1 additions and 1 deletions

View File

@ -50,7 +50,7 @@ alias gcS='git commit -S'
alias gpS='git show --pretty=short --show-signature'
# Conflict (C)
alias gCl='git diff --diff-filter=U --name-only --no-pager'
alias gCl='git --no-pager diff --diff-filter=U --name-only'
alias gCa='git add $(gCl)'
alias gCe='git mergetool $(gCl)'
alias gCo='git checkout --ours --'