v0.1.3
Fix shell alias ordering
Fixed shell aliases so -r/-R flags come last, since they require an argument.
Before (broken)
alias gdxrc='git diff-x -R --color' # -R consumes --color as its argument!After (fixed)
alias gdxcr='git diff-x --color -R' # -R correctly receives user's ref argumentAffected aliases renamed:
| Old | New |
|---|---|
gdxrc |
gdxcr |
gdxsc |
gdxcs |
gdxrn, gdxsn |
gdxnr, gdxns |
gdxrw, gdxsw |
gdxwr, gdxws |
gdxrwc, gdxswc |
gdxwcr, gdxwcs |
gdxrwn, gdxswn |
gdxwnr, gdxwns |
Full Changelog: v0.1.2...v0.1.3