I guess I'm learning somewhat backwards. I'm very comfortable with git and never used mercurial until my most recent project. The project was already using mercurial so I'm forced to deal with it. It's been a major hassle in a few cases.
One of the things that bothers me is that sometimes I can't seem to refresh my development environment because of un-tracked file errors. I really don't care whether files are tracked/untracked or whatever on the development server. I'd just like to be able to pull the most recent state of the repo from bitbucket and be on my merry way.
Unfortunately, I sometimes end up resorting to nuking the app and re-cloning. Normally this wouldn't be that big of a deal but there are dependencies that I need to add back to the app each time I do this because they are not stored in the repo.(smarty, yeah, smarty!)
With git I would run...
git reset --hard; git checkout master -f; git pull; git checkout origin/master -f
What's the mercurial equivalent? I've tried...
hg revert --all; hg pull; hg update;
Which seems to work as I would expect it sometimes. When it doesn't work it aborts due to the untracked file errors. I'm looking for something that works all the time. I'm sick and tired of re cloning this repo. Please help!!
Thanks in advance.
hg revert --all, nothg reset --all? – Chris Morgan Jul 14 '11 at 5:24hg clone -U pristineclone newclone. Many folks keep a pristine clone around for just that reason and then clone for it for work. Hard links (linux, windows, osx) make that fast and almost disk-space free. There's no need to clone over the network more than once. – Ry4an Jul 14 '11 at 14:08