我正在尝试创建一个别名来拉取而不必先提交。我首先尝试了这个:
git config --global alias.pulluc 'git add .; git stash; git pull; git stash pop; git reset;
跑步的时候git pulluc
,我就抱怨过'git' is not a git command
。我将其更改为:
git config --global alias.pulluc 'add .; stash; pull; stash pop; reset;
现在,当我跑步时,git pulluc
我得到fatal pathspec: '.;' did not match any files
如何git add .
在别名中包含命令列表?