Я пытаюсь добавить следующий псевдоним Git в качестве команды в Git Bash (пользователь 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