Wednesday 4 January 2012

Blog has moved (sort of)

The eagle-eyed among you have probably noticed that this blog hasn't been updated for a while and that's because I'm now mostly posting over at http://blog.networkedcollaboration.com/ (but forgot to tell anyone, sorry).

If you like Atlassian Confluence, IBM Connections and Social Business please head on over to the new blog and take a look.

Cheers,

Andrew.

Thursday 21 July 2011

Mercurial and MacOS 10.7

For those early adopters of Mac0S 10.7 (Lion) that also use Mercurial as their DVCS, you may find the update broke Mercurial (it did for me).

If you get errors using Mercurial on Lion there is now a new version of Mercurial available and it works a treat.

Hope this helps someone spend less time head scratching than I did.

Monday 28 February 2011

Bitbucket Import

Following the lead of David Hay and starting to blog things so I don't forget them in future.

I'd been struggling with adding an already existing Mercurial local repository to Bitbucket and it turned out to be quite straightforward once I'd engaged my brain.

All I needed to do was create a file under the .hg directory in the root of the project called "hgrc" and populate it with:
[paths]
default = https://<your_username>@bitbucket.org/<your_username>/<your_projectname>

And then just run "hg push" from the top level project directory as I'd already run "hg add" from the same top level directory to add the project files to the local repository.

Seemples.