- Feb 04, 2016
-
-
Dan Villiom Podlaski Christiansen authored
The ReviewBoard repository contains a Mercurial repository within its Git repository; if you just convert that into Mercurial, you can't check it out. We handle this similar to invalid Git paths: by default, refuse the conversion, but with a configuration knob to force it through with a warning. See also: https://github.com/reviewboard/reviewboard/ https://reviewboard.org/bugs/3190
-
- Feb 02, 2016
-
-
Siddharth Agarwal authored
The other `sed` seems to no longer be necessary, so remove it.
-
- Jan 14, 2016
-
-
Dmitrij D. Czarkoff authored
Seq is not a standard utility, and explicit loop should be more performant.
-
- Dec 31, 2015
-
-
Siddharth Agarwal authored
-
Siddharth Agarwal authored
-
Siddharth Agarwal authored
-
- Oct 16, 2015
-
-
Sean Farley authored
-
- May 17, 2015
-
-
Sean Farley authored
It is unclear to me why we keep a file (which can become out of sync) of remote refs instead of just using dulwich. This caught a missing remote ref in the test suite.
-
- Jul 17, 2015
-
-
Sean Farley authored
Originally, I copied the logic for the file scheme which calls _peerlookup(path) but in mercurial/hg.py they have: try: return thing(path) except TypeError: return thing So, our http(s) scheme broke default Mercurial because I tried returning thing(path) instead of just thing. A test has been added to catch this.
-
- Jun 14, 2015
-
-
Sean Farley authored
Previously, there was an edge case for Git repositories that started as Mercurial repositories and had used subrepos where a deleted .hgsubstate would be ignored and therefore reintroduced. This patch fixes that behavior by checking for the deleted .hgsubstate file first. A test has been added to verify behavior.
-
- Jun 11, 2015
-
-
Durham Goode authored
If the importer encountered an error half way through a large import, all the commits are saved, but the mapfile is not written, so the process starts over from the beginning when run again. This adds the option for a config value that will save the map file every X commits. I thought about just hard coding this to 100 or something, but doing it this way seems a little less invasive.
-
- Jun 01, 2015
-
-
Siddharth Agarwal authored
ignore.readpats was added at some point before 2.8. Mercurial upstream has now dropped the ignore module completely, so drop this check.
-
- May 28, 2015
-
-
Durham Goode authored
Upstream Mercurial has added phase info to the summary output. Let's update the test to reflect that.
-
- May 12, 2015
-
-
Sean Farley authored
-
- May 03, 2015
-
-
Siddharth Agarwal authored
-
- Mar 12, 2015
-
-
Siddharth Agarwal authored
The bookmark output has been stable since well before the oldest Mercurial we support, 2.8.
-
- Feb 27, 2015
-
-
Siddharth Agarwal authored
Consider a Mercurial commit with hash 'h1'. Originally, if the only Mercurial field stored is the branch info (which is stored in the commit message rather than as an extra field), we'd store the rename source explicitly as a Git extra field -- let's call the original exported hash 'g1'. In Git, some operations throw all extra fields away. (One such example is a rebase.) If such an operation happens, we'll be left with a frankencommit with the branch info but without the rename source. Let's call this hash 'g2'. For a setup where Git is the source of truth, let's say that this 'g2' frankencommit is what gets pushed to the server. When 'g2' is subsequently imported into Mercurial, we'd look at the fact that it contains a Mercurial field in the commit message and believe that it was a legacy commit from the olden days when all info was stored in the commit message. In that case, in an attempt to preserve the hash, we wouldn't store any extra rename source info, resulting in 'h1'. Then, when the commit is re-exported to Git, we'd add the rename source again and produce 'g1' -- and thus break bidirectionality. Prevent this situation by not storing the rename source if we're adding branch info to the commit message. Then for 'h1' we export as 'g2' directly and never produce 'g1'. What happens if we not only need to store branch info but also other extra info, like renames? For 'h1' we'd produce 'g1', then it'd be rewritten on the Git side to 'g2' throwing away all that extra information. 'g2' being subsequently imported into Mercurial would produce a new hash, say 'h2'. That's fine because the commit did get rewritten in Git. We unfortunately wouldn't perform rename detection thinking that the commit is from Mercurial and had no renames recorded there, but when the commit is re-exported to Git we'd export it to 'g2' again. This at least preserves bidirectionality.
-
Siddharth Agarwal authored
Unlike the file to symlink transition discussed in the previous case, this case works fine.
-
Siddharth Agarwal authored
This edge case that rename detection introduces wasn't handled previously -- the file would be renamed but the symlink wouldn't be added.
-
- Feb 21, 2015
-
-
Paul Chen authored
-
- Feb 16, 2015
-
-
Mathias De Maré authored
Deleting a .gitignore using 'rm' results in 'hg add' or 'hg status' aborting. For example if the top-level .gitignore is removed: > abort: No such file or directory: .gitignore This change avoids that by checking the presence of the .gitignore files.
-
- Dec 30, 2014
-
-
Siddharth Agarwal authored
See comment inline for explanation. Also add tests for this (the bug was masked with rename detection disabled -- it only appeared with rename detection enabled).
-
Siddharth Agarwal authored
There weren't any bugs here, but this is good to test.
-
Siddharth Agarwal authored
This adds some test coverage for cases that are not buggy. There is a bug lurking here, and an upcoming patch will extend these tests to cover those cases too.
-
- Nov 24, 2014
-
-
durin42 authored
A user recently got confused and managed to track and export a .git directory, which confuses git and causes it to emit very odd errors. For example, cloning one such repository (which has a symlink for .git) produces this output from git: Cloning into 'git'... done. error: Updating '.git' would lose untracked files in it and another (which has a .git directory checked in) produces this: Cloning into 'git'... done. error: Invalid path '.git/hooks/post-update' If it ended there, that'd be fine, but this led to a line of investigation that ended with CVE-2014-9390, so now git will block checking these revisions out, so we should try to prevent foot-shooting on our end. Since some servers (notably github) are blocking trees that contain these entries, default to refusing to export any path component that looks like it folds to .git. Since some histories probably contain this already, we offer an escape hatch via the config option git.blockdotgit that allows users to resume foot-shooting behavior.
-
- Dec 29, 2014
-
-
Siddharth Agarwal authored
-
- Dec 02, 2014
-
-
Siddharth Agarwal authored
See inline comments for why the additional metadata needs to be stored. This literally breaks all the hashes because of the additional metadata. The changing of hashes is unfortunate but necessary to preserve bidirectionality. While this could be broken up into multiple commits, there was no way to do that while preserving bidirectionality. Following the principle that every intermediate commit must result in a correct state, I decided to combine the commits.
-
Siddharth Agarwal authored
We use Dulwich's rename detector to detect any renames over the specified similarity threshold. This isn't fully bidirectional yet -- when the commit is exported to Git the hashes will no longer be the same. That's why that isn't tested here. In upcoming patches we'll make sure it's bidirectional and will add the corresponding tests.
-
- Dec 05, 2014
-
-
Siddharth Agarwal authored
Git 1.8.0 was released in late 2012. Given that we only support versions of Mercurial released in 2014, it doesn't make sense to support versions of Git this old.
-
- Nov 04, 2014
-
-
Siddharth Agarwal authored
Previously we'd crash on annotated tags because they don't have a 'tag_time' property.
-
- Oct 30, 2014
-
-
Siddharth Agarwal authored
-
Siddharth Agarwal authored
-
Siddharth Agarwal authored
-
- Oct 31, 2014
-
-
Siddharth Agarwal authored
This is quite similar to syntax Git supports. In the future maybe core Mercurial could be extended to support this, but I think this independently makes sense in hg-git.
-
- Oct 29, 2014
-
-
Siddharth Agarwal authored
There was previously an attempt to handle this but no test coverage.
-
- Oct 14, 2014
-
-
Siddharth Agarwal authored
We only support Mercurial >= 2.8.
-
- Aug 31, 2014
-
-
Siddharth Agarwal authored
-
Siddharth Agarwal authored
We export new git commits with hg extra metadata stored as git extra fields. We also ensure that parsing old commits doesn't break.
-
Siddharth Agarwal authored
Git has a well-hidden notion of extra fields. They aren't accessible from the CLI, but Dulwich can create them. They're a better place to store Mercurial's extra metadata than the commit message. An upcoming patch will switch hg-git to saving the metadata in the Git extra fields. This commit: (a) prepares for that (b) extracts other Git extra fields so that commits from Git with such fields roundtrip correctly
-
Siddharth Agarwal authored
An upcoming patch will include an inline python test. tests/heredoctest.py is copied over from the Mercurial repository.
-