I am trying to create an alias that uses both multiple Git commands and positional parameters. There are Stackoverflow pages for each, and it would appear painfully obvious to do both, but I am having
Can I pass arguments to the alias of a Git command? I have some alias in Git config, like so: rb1 = rebase -i HEAD~1
I set up a git alias like this: git config --global alias.popmerge \'!git stash pop && git merge master\'
I saw a screencast where someone had gotten git st git ci to wor开发者_如何学Gok. When I do it I get an error asking me if I meant something else.