Git clone from bash script
问题 I am trying to automate my interactions with Git building a script and I am having the following problem. This works from the command line: git clone git@github.xxxx.com:blablabla/reponame.git /Users/myname/dev/myfolder And now I would like to do the same, but from my script. I have the following: #/bin/bash repository="git@github.xxxx.com:blablabla/reponame.git" localFolder="/Users/myname/dev/myfolder" git clone $repository" "$localFolder that gives me this error GitHub SSH access is