Linked Questions
64 questions linked to/from Git push requires username and password
0
votes
1
answer
482
views
When trying to push code to GitHub nothing happens [duplicate]
I am trying to push a file to my GitHub repository. When I type git push -u origin master and press enter, nothing shows in the screen. When I press Ctrl+c, then it shows a box for username. When I ...
0
votes
0
answers
408
views
Git pull from a python script [duplicate]
I have a python script called git_update.py to git pull a repository and I want to schedule this to run everyday at 6 AM. but the below code doesnnot work
git_update.py
import os
import schedule
...
Shanoo's user avatar
- 1,255
0
votes
0
answers
323
views
Secure git push and pull using git without password, from remote repository [duplicate]
I want to push and pull a repository from a remote server without having to use a password. I have tried following using the Git guide, but it does not work, I still get asked for a password.
Here ...
1
vote
2
answers
173
views
Issue while pushing new code in Github [duplicate]
I am trying to push code into Github using command,
git push -u origin master
But it is asking for username and password and when I enter username and password it is giving error as "remote: Invalid ...
0
votes
0
answers
88
views
Why doesn't git ask for username and password every time I try to push from vs code's integrated terminal? [duplicate]
Whenever I git push anything on vs code's integrated terminal, it doesn't ask for username and password. But whenever I try to push from the main terminal of ubuntu, it asks for username and password, ...
0
votes
1
answer
37
views
I got a new Macbook.I installed lowbrow and Git but I cannot [duplicate]
in my GitHub account I have more Repository. I got a new Macbook. I installed Howbrew and Git . but I cannot contact my local with my GitHub profile. How can I make that. Thank you for your help.
2831
votes
37
answers
4.7m
views
How can I save username and password in Git?
I want to use a push and pull automatically in Git Extensions, Sourcetree or any other Git GUI without entering my username and password in a prompt, every time.
So how can I save my credentials in ...
2357
votes
45
answers
2.5m
views
Could not open a connection to your authentication agent
I am running into this error of:
$ git push heroku master
Warning: Permanently added the RSA host key for IP address '50.19.85.132' to the list of known hosts.
! Your key with fingerprint b7:fd:15:...
2134
votes
29
answers
1.2m
views
Is there a way to cache https credentials for pushing commits?
I recently switched to synchronizing my repositories to https:// on GitHub (due to firewall issues), and it asks for a password every time.
Is there a way to cache the credentials, instead of ...
889
votes
36
answers
1.1m
views
SSH Key - Still asking for password and passphrase
I've been somewhat 'putting up' with GitHub always asking for my username and password when I clone a repository. I want to bypass this step because it is an annoyance within my workflow.
I tried ...
859
votes
34
answers
632k
views
Git keeps prompting me for a password
I've been using Git for a while now, but the constant requests for a password are starting to drive me up the wall.
I'm using Mac OS X and GitHub, and I set up Git and my SSH keys as ...
900
votes
32
answers
780k
views
Git asks for username every time I push
Whenever I try to push into my repo git asks for both username & password.
I have no problem in re-entering my password each time but the problem is in entering username. I use https to clone my ...
RanRag's user avatar
- 49.8k
426
votes
20
answers
423k
views
How do I avoid the specification of the username and password at every git push?
I git push my work to a remote Git repository.
Every push will prompt me to input username and password. I would like to avoid it for every push, but how to configure to avoid it?
141
votes
10
answers
72k
views
Git authentication fails after enabling 2FA
I just enabled 2FA (I can't think of any other changes I made) and git asked for my username and password. I provided both, but they were "wrong". I tried many of the solutions here: Git push requires ...
66
votes
4
answers
29k
views
Still requiring login after SSH authentication
I followed everything in the GitHub tutorial: https://help.github.com/articles/generating-ssh-keys
I did all the commands in the directory of my repository.
I reached the end of tutorial successfully ...