2009-10-30 68 views
0

我將所有文件提交到bitbucket。我嘗試檢入,恢復使用netbeans刪除的文件,一切正常。當我登錄到bitbucket並選擇我的存儲庫(私人)。我無法在「源」列內看到我的源代碼bitbucket mercurial無法在源列中看到源代碼

+1

您應該向bitbucket支持人員或他們的谷歌羣組提問(請參閱http://bitbucket.org/help/Home)。 – Amber 2009-10-30 02:29:51

+0

好的。將這樣做 – cometta 2009-10-30 02:37:27

回答

2

您是否將提交內容「推」到bitbucket? mercurial中的提交不會像在Subversion或CVS中那樣發佈更改。

你可以在命令行上做到這一點:

hg commit -m "my commit message" 
hg push 

推將變更集發送到.hg/hgrc specificed「默認」的位置,其中最有可能是您的帳戶到位桶,假設你做來自bitbucket的你的hg克隆。

+0

有沒有什麼辦法可以在netbeans中配置自動推送? – cometta 2009-10-30 09:57:55

+0

@cometta,很確定你可以通過.hg/hgrc文件中的掛鉤來完成。就像「commit = hg push」一樣。請參閱http://hgbook.red-bean.com/read/handling-repository-events-with-hooks.html和http://mercurial.selenic.com/wiki/Hook – 2009-10-30 12:14:26