mercurial Questions
3
I understand that reading the source code is an option, given that these systems are open source, but I am looking for something on the lines of Scott Chacon's excellent writeup on Git Internals.
...
3
Solved
I need an .hgdontignore file :-) to include certain files and exclude everything else in a directory. Basically I want to include only the .jar files in a particular directory and nothing else. How...
8
Solved
I'm looking for a counter-part of git commit --amend in Mercurial, i.e. a way to modify the commit which my working copy is linked to. I'm only interested in the last commit, not an arbitrary earli...
Upthrust asked 18/11, 2011 at 13:4
5
Solved
Recently Mercurial has added certificate validation when connecting to HTTPS servers. I'm trying to clone the wiki repository for a googlecode project at https://wiki.pydlnadms.googlecode.com/hg/, ...
Durham asked 2/3, 2011 at 7:56
2
Solved
I am looking for the mercurial equivalent of the solution to this question:
How do I "git blame" a deleted line?
In short, I am looking at a mercurial commit where a line was added, and...
8
I don't have a huge experience with Mercurial, I'm mostly a Git guy.
I would love to mirror a specific Mercurial folder/file in a git Repository. What I'm actually trying to do is to export the hi...
2
Solved
I just started my first Mercurial project.
I did a 'cd' into my source directory.
Then I did this:
hg init myproject
But next I did
hg commit -m "first commit"
And all it reports is:
nothi...
Hotchpotch asked 9/9, 2009 at 3:10
5
Solved
I have made a tag in mercurial:
hg tag release_123
Later on I found out that the name was wrong, it should be release_124. Is it possible to simply rename the tag or do I have to create a new one?...
Centrosymmetric asked 27/9, 2011 at 11:56
4
I'm new to Mercurial. I did hg status and I saw the files that changed since the last commit have M in front. I then tried hg update -C. Is there any way I can get back the version of the files wit...
Airman asked 14/5, 2013 at 22:48
1
Solved
Is there any existing tool that is able to export a mercurial repository to a git repository while preserving the commit hashes?
I'm aware of hg-git or fast-export.git, but those create new commit...
4
Solved
In Mercurial, I can see my current (uncommitted) changes by running
$ hg diff
Fine. But after commit, I sometimes want to see this diff again (i.e., the diff of the last changeset). I know I can...
Epigrammatize asked 17/12, 2012 at 13:52
5
Solved
Say I have files File_A, File_B and File_C. I edit File_A and File_B on purpose but File_C I just added some debugging code that I don't plan to commit. Then by accident I do a
hg commit -m "comme...
Colic asked 24/2, 2011 at 6:7
6
Solved
I have problem with mercurial on OS X 10.9.1
I have a repository on bitbucket with couple files, when I'm trying to clone it I'm getting an error:
mac-mini-jakub:testrepo kubeczek$ hg clone https...
2
Solved
In Git, there is the command
git remote show <remote>
When properly configured, this will show you the status of the remote compared to your local repository, including whether there are p...
Castiron asked 29/7, 2011 at 19:0
1
I am trying to convert Hg repository to Git repository. Both are private repository.
I have followed these steps (reference):
Step 1: Set up your repositories
Step 2: Install the Mercurial hggit...
3
I'm using Workbench, but if there's a command line solution for this or some extension, I'm open to that as well.
I'm constantly working in config files per environment (working in .NET, so pleas...
Omura asked 9/4, 2014 at 14:25
4
Solved
My only guess is something horrible like this:
# files where something has been added
hg diff -r AA -r BB|grep -- +++|cut -f1|cut -d/ -f2- >/tmp/ka
# files where something has been removed
hg ...
Ginzburg asked 26/3, 2012 at 15:5
4
Solved
I'm looking for a way to make --insecure option the default one for any hg \ TortoiseHg command.
Please don't write this is a bad practice - I aware about possible risks and consider they're fully...
Alton asked 20/3, 2011 at 5:2
2
Solved
How do I check out a particular named branch of a Mercurial repo?
Tar asked 3/12, 2010 at 12:24
3
We just recently switched from TFS to Mercurial for our small team. The main project that 3 people work on is a Windows Forms application in C#. Every time you use the designer, even for simple cha...
Deerhound asked 16/3, 2012 at 16:37
2
Solved
We recently did a hg copy of a directory in our repository. We thought it
does something like cp -a and hg add and maybe flag somehow that
this file has been copied from another file inside the rep...
Gilud asked 16/12, 2011 at 9:6
3
Solved
Our team is using Mercurial for version control, with the central repository located on a shared network drive (i.e. we are not using a server). Our company restricts what we can install on our com...
Nonperformance asked 16/5, 2019 at 14:26
5
Solved
Ok I've had a little google and can't find a solution as i've stumbled across the same message but different ways in which people have got it. I'm new to mecurial and want to make sure i'm doing th...
Autonomous asked 10/9, 2013 at 16:28
5
Does Git have any command equivalent to Mercurial's "hg id"? I.e. a command that prints the parent commit's hash and a plus sign if there are changes in the working directory?
Swayder asked 15/1, 2013 at 8:1
3
Solved
Recently this behavior was disabled by default. The message prompts you to check the help page but it's not helpful, at least it didn't help me.
"subrepos"
----------
This section contains opt...
Bernardina asked 30/3, 2018 at 16:31
© 2022 - 2024 — McMap. All rights reserved.