Tagged Questions
1
vote
1answer
84 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 ...
0
votes
2answers
55 views
fetch code from svn on basis of commit
Below is the scenario for what I want:
I have a Feature List that contains different line items to fix. We can number these like line item1,line item2,line item3 up to line itemn
A team of 3 ...
0
votes
0answers
28 views
fetch Partial Code for some updates from Vault
Below is the scenario for what I want:
I have a Feature List that contains different line items to fix. We can number these like line item1,line item2,line item3 up to line itemn
A team of 3 ...
2
votes
2answers
67 views
Is it possible to rebundle multiple SVN revisions into a single revision?
Someone has checked in 20 files as part of a logical chunk of work they are doing.
Unfortunately they did this as 20 separate commits. This makes me a sad-panda
Is there anyway to purge these ...
0
votes
1answer
347 views
TFS - Is there a way to reset revision number?
Hello
We're currently migrating from SVN to TFS, and when I created the Team Project I did a lot of stuff (created work items, commited a lot of stuff, imported the projects, changed a lot of files)
...
10
votes
3answers
1k views
Injecting mercurial changeset as version information in a C executable
I would like the executables for a project I am working on to have the latest mercurial changeset recorded so that when a user complains about buggy behavior, I can track which version they are using. ...