简体   繁体   English

使用F#的窑炉水库

[英]Kiln mercurial repository using F#

I have a code on F # in my Desktop and would like to pull it to Kiln mercurial repository on https://www.kilnhg.com/ . 我在桌面上的F#上有一个代码,并希望将其拉到https://www.kilnhg.com/上的Kiln Merurial存储库。 I do the following. 我执行以下操作。

1) change directory to the path of my code 2) hg clone https://....kilnhg.com/Code/goyal-welch/Group/goyal-welch (repository on Kiln) 1)将目录更改为我的代码的路径2)hg clone https://....kilnhg.com/Code/goyal-welch/Group/goyal-welch (Kiln上的存储库)

What should I do next to push the code on my computer to this Kiln mercurial repository? 接下来,我该怎么办才能将计算机上的代码推送到该窑库库中? Any lead way will be tremendously appreciated. 任何领先的方式将不胜感激。

You've probably solved it by now, but here goes: 您现在可能已经解决了,但是这里是:

From the directory: 从目录:

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

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM