I am a newbie on Github, and trying to push my first master
branch to my remote repository.
In the Git bash, I typed git remote add origin https://github/...
but when I firstly typed git push -u origin master
, I typed wrong username and password on the pop-up window..T^T
and after then, it just gives me
remote: Invalid username or password.
fatal: Authentication failed for 'https://github/...'
So I tried to use
git remote set-url origin https://github/...
and git push -u origin master
again,
but it shows me the same error message..
How can I fix this problem?