Skip to content

v0.1.3

Choose a tag to compare

@github-actions github-actions released this 03 Jan 18:45
· 18 commits to main since this release

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 argument

Affected 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