我试图在Git bash中添加以下Git别名作为命令(windows用户在这里)。
yolo = "!git init && git remote add origin $1 && git pull"
这似乎都不起作用。前者会引发错误,后者逃脱双引号中.gitconfig
来yolo = \"!git init && git remote add origin $1 && git pull\"
$ git config --global alias.yolo "!git init && git remote add origin $1 && git pull"
$ git config --global alias.yolo '"!git init && git remote add origin $1 && git pull"'
更新:第一个命令显示的错误是
git config --global alias.yolo "git config --global alias.yolo '"!git init && git remote add origin $1 && git pull"' init && git remote add origin $1 && git pull"
usage: git remote add [<options>] <name> <url>
-f, --fetch fetch the remote branches
--tags import all tags and associated objects when fetching
or do not fetch any tag at all (--no-tags)
-t, --track <branch> branch(es) to track
-m, --master <branch>
master branch
--mirror[=<push|fetch>]
set up remote as a mirror to push to or fetch from
错误是什么?
—
Ouroborus 2015年
问题随错误而更新。
—
Collizo4sky 2015年