I am a student and very new to version control software, so it’s hard for me to figure this out. I am using the Google Git repository. To access this repository, I use Git Bash on Windows 7. The problem is that when I click the Step button, I won’t be asked to enter a password. For instance:
First, I set global variables as follows:
git config --global user.name "Your Name" git config --global user.email youremail@gmail.com
Cloned
$ git clone https:// UserName@code.google.com /p/repository/
Then I made changes to the files / added new files, etc. and added
$ git add .
I agree
$ git commit -m "Message"
Stretched out to make sure I'm up to date
$ git pull Already up-to-date.
But when I click, I do not ask for a password
$ git push origin master fatal: remote error: Invalid username/password. You may need to use your generated googlecode.com password; see https://code.goo gle.com/hosting/settings
Any suggestions? Thank you
source share