Ich versuche, den folgenden Git-Alias als Befehl in Git-Bash hinzuzufügen (Windows-Benutzer hier).
yolo = "!git init && git remote add origin $1 && git pull"
Nichts davon scheint zu funktionieren. Die ehemalige wirft einen Fehler und dieser entkommt das doppelte Anführungszeichen in .gitconfig
zuyolo = \"!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"'
Update: Der vom ersten Befehl angezeigte Fehler ist
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