Can't push after Git Update

2019-02-13 18:46发布

I've just updated from Git 1.7.11 to 1.8.5

Now when trying to push to bitbucket I'm getting the following message:

fatal: could not read Password for 'https://xxxxxx@bitbucket.org': No such file or directory

Where xxxxx is my username.

Pushing on other machines which are still on 1.7 is working ok.

What would cause this and how can I fix it?

4条回答
来,给爷笑一个
2楼-- · 2019-02-13 18:47

It is a bug in 1.8.5.2 msysgit (1.8.5.2-preview20131230). See the report and a discussion with a way to workaround

查看更多
淡お忘
3楼-- · 2019-02-13 18:51

Just taking a blind shot here, but are you able to re-add the remote without the username in the URL? I know in the old Git version, you needed to specify the username and password inline, but in the newer versions, it prompts you for the username and password if required.

git remote add origin https://bitbucket.org/repo.git
查看更多
我只想做你的唯一
4楼-- · 2019-02-13 18:58

try:

git remote add origin https://username:password@bitbucket.org/repo.git

obviously for username put your username

password put your password

查看更多
该账号已被封号
5楼-- · 2019-02-13 19:01

Not necessarily the best answer - but in the end I resolved this by removing/uninstalling git altogether and then reinstalling.

I have no idea why I needed to do this. At present I've reinstalled 1.7. I'll try an update again sometime and update this post.

查看更多
登录 后发表回答