I have a private github repository and i can clone the repository by making https request only. SSH is not an option for me. My command should be like this:
git clone https://username:[email protected]/asrrepo/QA.git
But what if my password starts with @ character in it?
git clone https://username:@[email protected]/asrrepo/QA.git
I don't want it to prompt me to enter the password.
you can run
git clone https://[email protected]/asrrepo/QA.git
it will prompt for your passwordUpdate: (if you don't want it to be prompted)
https://username:%[email protected]/asrrepo/QA.git