1
0
Fork 0
mirror of synced 2024-06-01 06:41:12 -04:00

Repair gCl alias

The no-pager option should be set on `git` and not `git diff`.
This commit is contained in:
Oskar Grunning 2018-02-12 21:25:02 +01:00
parent de045ab70e
commit 0719e1d6f3

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 --'