From 397f18f7583465dc6e0de624906a6643a4768973 Mon Sep 17 00:00:00 2001 From: Kevin Bullock Date: Tue, 19 Nov 2019 19:21:21 -0600 Subject: [PATCH 1/4] update bitbucket.org links to point to public Heptapod instance --- index.html | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/index.html b/index.html index b577857..981f2b0 100644 --- a/index.html +++ b/index.html @@ -140,7 +140,7 @@

Installing Hg-Git manually

easy_install 'dulwich>=0.8.0' if you have setuptools installed. Next, clone - the Hg-Git + the Hg-Git repository somewhere. Lastly, make the 'extensions' section in your '~/.hgrc' file look something like this: @@ -162,8 +162,8 @@

Installing Hg-Git manually

Different versions of hg-git are known to work with different versions of Mercurial. For the most accurate info, go to - the source - on bitbucket, click the dropdown menu that says "default", + the source + on Heptapod, click the dropdown menu that says "default", click the "Tags" tab, select the version you've installed, and click on the file "Makefile". There's a line that starts with "all-version-tests" which lists the versions of Mercurial @@ -182,7 +182,7 @@

Installing Hg-Git manually

Sources

Source available via - hg + hg (canonical repo) or git (mirror of hg). Patches preferred via email to From fcd67d93070a9fcba671c0a2f95a8480c8ecd09f Mon Sep 17 00:00:00 2001 From: Kevin Bullock Date: Tue, 19 Nov 2019 19:22:10 -0600 Subject: [PATCH 2/4] strip trailing whitespace --- index.html | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/index.html b/index.html index 981f2b0..21225a7 100644 --- a/index.html +++ b/index.html @@ -100,22 +100,22 @@

Installing Hg-Git the easy way:

Visual C++. (Be sure to install the 2008 version for compatibility reasons.) On Debian-style Linux, run apt-get install python-dev. -

+

Secondly, run easy_install hg-git. If you don't have easy_install available, you can get it as part of - Python's + Python's setuptools package.

- +

Alternatively, on Windows, TortoiseHg - comes with hg-git (and Dulwich), though it + comes with hg-git (and Dulwich), though it still needs to be enabled as shown below (or through the TortoiseHg settings).

- +

Lastly, make sure the following is in your ~/.hgrc: @@ -124,7 +124,7 @@

Installing Hg-Git the easy way:

hgext.bookmarks = hggit =

- ...and that's it! + ...and that's it!

Installing Hg-Git manually

@@ -134,14 +134,14 @@

Installing Hg-Git manually

install Hg-Git in a location you choose yourself.

- First, install version 0.8.0 or newer of - Dulwich. - You can do - easy_install 'dulwich>=0.8.0' if you have + First, install version 0.8.0 or newer of + Dulwich. + You can do + easy_install 'dulwich>=0.8.0' if you have setuptools - installed. Next, clone + installed. Next, clone the Hg-Git - repository + repository somewhere. Lastly, make the 'extensions' section in your '~/.hgrc' file look something like this:

@@ -174,7 +174,7 @@

Installing Hg-Git manually

is a pure-Python implementation of the Git file formats and protocols. There are no Git binary dependencies: you do not need to have Git installed - on your system. + on your system.

From b4342f5cd79eb8d46ab7e486e7453830b5fc3f83 Mon Sep 17 00:00:00 2001 From: Kevin Bullock Date: Tue, 19 Nov 2019 19:22:59 -0600 Subject: [PATCH 3/4] update dulwich version references --- index.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/index.html b/index.html index 21225a7..a1b00ec 100644 --- a/index.html +++ b/index.html @@ -134,10 +134,10 @@

Installing Hg-Git manually

install Hg-Git in a location you choose yourself.

- First, install version 0.8.0 or newer of + First, install version 0.19.0 or newer of Dulwich. You can do - easy_install 'dulwich>=0.8.0' if you have + easy_install 'dulwich>=0.19.0' if you have setuptools installed. Next, clone the Hg-Git @@ -170,7 +170,7 @@

Installing Hg-Git manually

known to work.

- It also needs Dulwich version 0.8.0 or later; Dulwich + It also needs Dulwich version 0.19.0 or later; Dulwich is a pure-Python implementation of the Git file formats and protocols. There are no Git binary dependencies: you do not need to have Git installed From 903f6d5059d75528761d3778d22757e52f8457e9 Mon Sep 17 00:00:00 2001 From: Kevin Bullock Date: Tue, 19 Nov 2019 19:24:46 -0600 Subject: [PATCH 4/4] remove references to bookmarks extension --- index.html | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/index.html b/index.html index a1b00ec..61b9be8 100644 --- a/index.html +++ b/index.html @@ -121,7 +121,6 @@

Installing Hg-Git the easy way:

following is in your ~/.hgrc:

[extensions]
-hgext.bookmarks =
 hggit = 

...and that's it! @@ -147,12 +146,10 @@

Installing Hg-Git manually

[extensions]
-hgext.bookmarks =
 hggit = [path-to]/hg-git/hggit

- That will enable the Hg-Git extension for you. The bookmarks - section is only required prior to hg 1.7. Bookmarks will be + That will enable the Hg-Git extension for you. Bookmarks will be translated to git heads when pushing.