This line fails to clone the repo
git clone https://${githubusername}:$githubaccesstoken@github.com/$githubusername/$repositoryname.git --branch=gh-pages $defaultWorkingDirectory\ghpages --quiet
If I remove the user name in the url to be this
git clone https://${githubusername}:$githubaccesstoken@github.com/$repositoryname.git --branch=gh-pages $defaultWorkingDirectory\ghpages --quiet
I can clone the repo.
I am an administrator on the repo, but I do not own it. What user should I be using? What am I doing wrong?
This line fails to clone the repo
git clone https://${githubusername}:$githubaccesstoken@github.com/$githubusername/$repositoryname.git --branch=gh-pages $defaultWorkingDirectory\ghpages --quiet
If I remove the user name in the url to be this
git clone https://${githubusername}:$githubaccesstoken@github.com/$repositoryname.git --branch=gh-pages $defaultWorkingDirectory\ghpages --quiet
I can clone the repo.I am an administrator on the repo, but I do not own it. What user should I be using? What am I doing wrong?