Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我将所有文件提交到 bitbucket。我尝试签入,恢复使用 netbeans 删除的文件,一切正常。当我登录到 bitbucket 并选择我的存储库(私有)时。我无法在“源”列中看到我的源代码
您是否将提交“推送”到 bitbucket?mercurial 中的提交不会像在 subversion 或 CVS 中那样发布更改。
您可以在命令行上执行此操作:
hg commit -m "my commit message" hg push
推送会将变更集发送到 .hg/hgrc 中指定的“默认”位置,这很可能是您的 bitbucket 帐户,假设您从 bitbucket 进行了 hg 克隆。