How to add an existing VS project to Mercurial (using TortoiseHG or VirtualHG)

I am new to Mercurial / TortoiseHG / VirtualHG. After reading some guides, I still don't understand how this should work.

Can someone explain in a few simple steps how I am adding an existing VS2010 project to Mercurial using TortoiseHG or VirtualHG, and how am I from there?

So, adding it to Mercurial, what do I need to do to get started on this project again? I worked with Visual SourceSafe a few years ago, so maybe this experience bothers me right now.

I would also like to know what to do when colleagues want to work on this project.

+5
source share
1

, :

$ hg init
# (setup .hgignore)
$ hg add
$ hg commit

! , . :

  • :. , . , . . , , hg push .

    , 2.0 ! Mercurial , .

  • HTTP-: hg serve - Mercurial. .

    $ hg serve --config "web.push_ssl=no" --config "web.allow_push=*"
    

    - .

    "" - hgweb () CGI script, Mercurial. . Mercurial wiki .

  • SSH-: , Unix, SSH- . Mercurial , . .

+1

All Articles