面对git的一个问题,它没有完成“git push”的过程,只是静止不动就会发生在无限循环中。 我在网上看了一下这个,这可能是空间问题吗?
我也试过“git config --global http.postBuffer 524288000”。这也没有帮助。
粘贴以下步骤:
$ git status -s
M cli/filename1.php
M cli/filename2.php
M cli/filename3.php
M cli/testDelete.php
$ git add -A
$ git commit -m " my msg "
[branch_name 45ec72e] my msg
4 files changed, 93 insertions(+), 15 deletions(-)
$ git push origin branch_name
Password for 'https://username@bitbucket.org':
<cursor keeps blinking here, it has been such since more than 20 mins now.>
我没有收到任何错误。 另外一个有趣的事情是:(1)我确实致命:当我输入错误的密码时验证失败,当我输入正确的密码时它进入无响应状态;(2)当我通过中断时ctrl + C 并再次运行git status -s - 它不显示任何文件。但是,当我在我的回购在线检查时,那里的文件不存在。
答案 0 :(得分:1)
对于仍然遇到此问题的人,请尝试配置您的用户名和电子邮件,就像在bitbucket中设置一样。
git config --global user.name "JohnDoe"
git config --global user.email johndoe@example.com