简体   繁体   中英

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/ . 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)

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

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

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