Since few time, I use Github for my projects and I have an issue when I want to push commits.
To beginning, I have forked a repository. Then I have cloned the fork (with command line git clone https://github.com/ ...
) and, after doing modifications, I have committed with success (git commit -a
).
After this, I have tried to push commits with command line git push
but I obtain the following error:
fatal: could not read Username for 'https://github.com': No such file or directory
Have you got an idea to resolve this issue?
What I had to do was:
git remote rm origin
git remote add origin '[email protected]:username/repo.git'
Then, I was able to push my changes.
I tried following command and it worked for me
git push https://<username>:<password>@github.com/<username>/<repository-name>
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With