Tagged Questions
0
votes
1answer
27 views
Mercurial: how to get previous changeset id of a specific file
I would like to get the previous revision for a specific file, no matter if it was changed in the tip or not.
For example, I have a repo that has a tip at changeset 226
$:~/sandbox$ hg log -r -3::.
...
0
votes
1answer
37 views
How to move a base revision to another branch in mercurial?
I've read this question: How to move some changeset to a new branch in mercurial
But my problem is slightly different. What I have is this:
NULL -> 1 -> 2 -> 3 -> 4 -> etc #default
...
0
votes
1answer
51 views
Mercurial : How to modify a specific revision?
The Scenario is as follows:
I cloned a Repo locally and made some changes and then committed.
hg clone test
vim abc
hg commit
Say the above gives me revision 1
I send this revision for review.
...
1
vote
1answer
85 views
Mercurial: get a list of revisions that match a partial revision number
I am trying to create an autocomplete textfield for selecting a Mercurial revision (full node id). I can use hg log --template '{node}\n' to get all revisions, but it takes over 1s for that command to ...
1
vote
1answer
64 views
How can I get the contents of a particular Mercurial revision when one of the files has an error?
So I've been coordinating some source code across my office with Mercurial.
Long story short, it looks like I did something completely wrong and screwed up and lost a ton of files on some revision
...
5
votes
2answers
325 views
Mercurial and mysql
I'm using Mercurial for revision control of few projects. I have Mercurial installed both on my VPS and on my local machine. I push changes from my local machine to the remote server. Everything is ...
1
vote
0answers
101 views
How to do Revision Control for Project Files? [duplicate]
Possible Duplicate:
Merging Xcode project files
I've been using Mercurial for my revision control needs with a small team working on a side project and we seem to be running into a lot of ...
0
votes
1answer
40 views
make a cross change in a file with mercurial
I'm new to mercurial, so may be my question is stupid.
Let say you made a mistake when you first started working on your code. For example, you putted
<!html DOCTYPE>
instead of
<!DOCTYPE ...
5
votes
3answers
461 views
Refer to a mercurial revision relative to a named revision
In git, you can do refer to revisions by something like master^^, meaning two revisions before master. Can you do the same in Mercurial in some way (or with some extension)? For example, if I want to ...
33
votes
3answers
14k views
How to view revision history for Mercurial file?
For a given file in a Mercurial repository, how can you see the revision history?
And how can you diff two revisions of the file?
Ideally doing all this with visual tools (we use ExamDiff to do ...
31
votes
4answers
8k views
Print Current Mercurial Revision Hash?
Is there a better way extract the current revision hash in Mercurial than
hg log -l1|grep changeset|cut -d: -f3
?
Part of my webapp deployment script "tags" the uploaded app tarball with its unique ...
4
votes
3answers
2k views
Mercurial: How to make HG LOG to show trivial parent?
According to HG manual:
By default this command prints
revision number and changeset id,
tags, non-trivial parents, user, date
and time, and a summary for each
commit. When the ...
22
votes
5answers
8k views
Mercurial scripting with python
I am trying to get the mercurial revision number/id (it's a hash not a number) programmatically in python.
The reason is that I want to add it to the css/js files on our website like so:
<link ...