我有一个本地IntelliJ IDEA项目,该项目被配置为在bitbucket.org上使用Mercurial版本控制。我可以在本地提交文件(Ctrl+K)并注册我的更改,但是当我尝试执行push (Ctrl+Shift+K)时,它永远不会完成。
我以前已经成功地将更改提交/推送到这个bitbucket存储库。IDEA 13.1.2 (135.690)中出现了“挂起推”,但我回过头来看第13.1 (135.667)版,我也在经历同样的事情。我最后一次成功的推动是在2014-03-21年间。
“背景任务”窗格显示“推送.”状态。偶尔,“检查传入的a&传出的更改.”状态会在下面弹出。
我的版本控制控制台看起来..。
hg.exe branches
hg.exe incoming --template {rev}{node}{author}{desc|firstline} --quiet --newest-first
hg.exe outgoing --template {rev}{node}{author}{desc|firstline} --quiet --newest-first
hg.exe push https://myUserName@bitbucket.org/myUserName/myProjectName
hg.exe incoming --template {rev}{node}{author}{desc|firstline} --quiet --newest-first
hg.exe outgoing --template {rev}{node}{author}{desc|firstline} --quiet --newest-first
hg.exe incoming --template {rev}{node}{author}{desc|firstline} --quiet --newest-first
hg.exe outgoing --template {rev}{node}{author}{desc|firstline} --quiet --newest-first
...我第一次用JetBrains打开了一张支持票(JetBrains),但是他们的电子邮件建议在这里寻求帮助。
发布于 2014-04-24 14:47:51
我收到了JetBrains的回复,并且很乐意解决我的问题。
作为解决办法,我创建了一个%HOME%\.hgrc文件并在其中包含了我的身份验证信息。
[auth]
bb.prefix = https://bitbucket.org
bb.username = {username}
bb.password = {password}也看,
https://stackoverflow.com/questions/23258827
复制相似问题