I just want to input the password only. Is there a way to avoid inputting username when git push with HTTPS?
1 Answer
With Git 1.7 and higher you can define your username and password before the address. Something like that:
git config remote.origin.url https://you:[email protected]/your/example.git
then you can define your user and password and don't need to enter them every time.
1 Comment
Big Shield
Thx! It works after
git config remote.origin.url https://[email protected]/your/example.git