0

我的桌面上有一个 F# 代码,想把它拉到https://www.kilnhg.com/上的 Kiln mercurial 存储库。我执行以下操作。

1)将目录更改为我的代码的路径 2)hg clone https://....kilnhg.com/Code/goyal-welch/Group/goyal-welch(Kiln 上的存储库)

接下来我应该怎么做才能将我计算机上的代码推送到这个 Kiln mercurial 存储库?任何领先方式将不胜感激。

4

1 回答 1

0

你现在可能已经解决了,但是这里有:

从目录:

hg add .     // Adds all files in the current directory
hg commit -m "Your comments" // Creates a new changeset
hg push      // Pushes the changeset to the server
于 2015-12-16T12:40:49.900 回答