Skip to main content

Questions tagged [mercurial]

Mercurial is a fast, open-source, distributed version control system.

Filter by
Sorted by
Tagged with
0 votes
2 answers
4k views

Meta maintains all their code in a single repository and initially used Git. Due to performance issues attributed to the repo's size, they consulted Git's team, who suggested switching to a multi-repo ...
just_a_developer's user avatar
-2 votes
1 answer
111 views

I am very confused in what I did with this mercurial repository ... I reversed a commit and after that I was never able to have a "unique" structure in my repository again. Can someone help me? > ...
Liliana Grigor's user avatar
0 votes
2 answers
327 views

This is a best practices question for release management of an app. But this scenario is a bit different than what I've been able to find myself. Essentially my company maintains a fork of its own ...
CrazyPenguin's user avatar
1 vote
1 answer
982 views

I'm a solo hobbyist developer with some code hosted on Bitbucket. I use TortoiseHg client-side for managing my repo. Back in 2013 I developed a feature on a branch but abandoned it before completion. ...
Drew's user avatar
  • 1,283
6 votes
1 answer
306 views

I am using mercurial on my project. Now I face following problem: I have two separate mercurial repositories with their own history. Now I need to have identical branches/bookmarks for both of them. ...
Igor Konoplyanko's user avatar
3 votes
1 answer
667 views

This question is related to this one: Why not commit unresolved changes? When needing to merge a large code base with many conflicts, I would like to have a way to commit progress to be shared ...
PaulRuby's user avatar
14 votes
5 answers
5k views

I was wondering if it would be good practice for commit messages to contain the ticket number they were apart of. It would be like 2568 Fix heating issue Summary of the issue with a bunch ...
Simon Lau-Yamauchi's user avatar
2 votes
2 answers
420 views

When I'm on a git project, I have a workflow that goes something like this: Start a new feature (open a new branch) Write some code, commit some code, repeat Push the code to a remote, possibly with ...
Johnson's user avatar
  • 29
5 votes
1 answer
3k views

We have a very large code base in mercurial. We have about a 6 month release cadence with 2 week sprints. For each release we have about 10 feature branches and maybe 5 or so people working per ...
Paul C's user avatar
  • 161
1 vote
1 answer
695 views

This is perhaps a question of strategy more than anything else. I am new to version control and I guess I should count myself lucky to have relatively more mature systems like Mercurial and Git at my ...
Shashank Sawant's user avatar
2 votes
1 answer
335 views

Projects A and B both use library project L: Judging by what people have written about it on the web, managing this situation appears to be a headache: http://codingkilledthecat.wordpress.com/2012/04/...
William Jockusch's user avatar
6 votes
2 answers
266 views

I always preach never to force push anything, because that adds ambiguity to the repository server. In this specific example, we collaborate with a customer and they "skip a step" and force push ...
bjones14's user avatar
3 votes
2 answers
1k views

My team uses Mercurial for version control. Our development / version control routine is: all been committing to the same branch pulling for changes and rebasing our commits locally before pushing ...
jordan.baucke's user avatar
4 votes
1 answer
281 views

This is a question about the internal workings of Mercurial. I vaguely remember a fellow programmer explaining to me how mercurial works out which changesets differ between two repositories and that ...
Robin's user avatar
  • 176
5 votes
3 answers
269 views

Here is the scenario: X is the author of a software. X releases v1.0 on an open source license on Github and moves on. People interested in the software fork and improve the software. Now there are ...
Vaibhav Bajpai's user avatar
3 votes
3 answers
651 views

My development team is migrating from SVN to Mercurial. Having researched DVCS best practices, it has been suggested that we develop against feature branches of the repo mainline, test them separately,...
Crollster's user avatar
  • 261
3 votes
3 answers
8k views

I committed and pushed some changes to the wrong branch. I found a way to fix it, but it seems overly complicated. Is this really the easiest way? on the branch that you made your changes, type hg ...
mpen's user avatar
  • 1,889
18 votes
3 answers
3k views

I think this article, A Successful Git Branching Model, is very well known among experienced DVCS users. I use hg mostly, but I would argue this discussion is fine for any DVCS. Our current ...
CppLearner's user avatar
28 votes
6 answers
25k views

Possible Duplicate: I’m a Subversion geek, why should I consider or not consider Mercurial or Git or any other DVCS? Every once in a while, you hear someone saying that distributed version control ...
Mason Wheeler's user avatar
4 votes
2 answers
9k views

In Mercurial I can do this with the bundled Purge Extension and executing the following command: hg purge Also good to get rid of ignored files: hg purge --all I'm curious about the most practical/...
dukeofgaming's user avatar
5 votes
2 answers
1k views

I've heard that Perforce is very good at merging, I'm guessing this has to do with that it tracks changes in the form of changelists where you can add differences across several files in a single blow....
dukeofgaming's user avatar
8 votes
3 answers
4k views

Need examples to show management that these are used for source control and effectively backup of projects. They will be concerned about having their source code off-site. If there are good ...
supervan's user avatar
2 votes
1 answer
240 views

So, I have this little debate at work where some of my colleagues (which are actually in charge of administrating our Perforce instance) say that workflows are strictly a process thing, and that the ...
dukeofgaming's user avatar
13 votes
5 answers
3k views

I've just started at a new job this past month and looks like they have NO source control for their code. They are relying on the backups their hosting provider takes for them. After talking a bit I ...
sergserg's user avatar
  • 1,882
7 votes
2 answers
1k views

I work in a small team of developers who all collaborate on several Zend PHP projects. We are using Mercurial with a collection of upstream repositories, as well as Jenkins for centralized testing ...
shanethehat's user avatar