Had some trouble with Subversion (again) at work. Decided to try Git or Mercurial.
Getting git to work was next to impossible, so I opted for Mercurial.
You can just create your own repository with hg init.
Then you simply do hg clone <repository dir> and you have a local repository and a remote.
I installed repository in a Dropbox folder. Doing this with Subversion spells certain doom, but with Mercurial you just push the changes to Dropbox and otherwise keep a local repository and it works flawless :)
Much much nicer than Subversion. Next I need to look into how to ignore files. Mercurial uses ignore files, rather than an ignore command.
On the other hand you don't need to delete unneeded stuff. Mercurial has an hg addremove command that adds new and deletes missing. Also you can do hg forget to have Mercurial forget a directory and/or files. Neat :)
Getting git to work was next to impossible, so I opted for Mercurial.
You can just create your own repository with hg init.
Then you simply do hg clone <repository dir> and you have a local repository and a remote.
I installed repository in a Dropbox folder. Doing this with Subversion spells certain doom, but with Mercurial you just push the changes to Dropbox and otherwise keep a local repository and it works flawless :)
Much much nicer than Subversion. Next I need to look into how to ignore files. Mercurial uses ignore files, rather than an ignore command.
On the other hand you don't need to delete unneeded stuff. Mercurial has an hg addremove command that adds new and deletes missing. Also you can do hg forget to have Mercurial forget a directory and/or files. Neat :)
RSS Feed