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.

1

There are 1 best solutions below

1
On BEST ANSWER

you can run
git clone https://[email protected]/asrrepo/QA.git it will prompt for your password

Update: (if you don't want it to be prompted) https://username:%[email protected]/asrrepo/QA.git