Okay, why doesn't this git alias correctly expand $1? localfetch = !git fetch $1 +refs/remotes/*:refs/remotes/*
2
@rossburton In git aliases, !foo has the git args *appended* only.
Try localfetch = !sh -c 'git fetch $1 +refs/remotes/...' --
2
@dsilverstone the question then is how does my review alias work...
1
@rossburton More by luck than judgement?
1

