- Oct 28, 2008
-
-
Benoit Boissinot authored
-
Benoit Boissinot authored
thanks to Augie Fackler for noticing it.
-
- Oct 27, 2008
-
-
Greg Ward authored
Parts of the original text were submitted by Hubert Kauker (Hubert dot Kauker at travelbasys.de). This is a slightly revised version of Hubert's original text.
-
Adrian Buehlmann authored
-
- Oct 28, 2008
-
-
Benoit Boissinot authored
- unify httprangereader.py and statichttprepo.py:rangegreader() - build the opener from url.py, that allows use to puse username and password in the url, to follow the proxy settings from hgrc, etc.
-
Benoit Boissinot authored
-
- Oct 27, 2008
-
-
Benoit Boissinot authored
-
Benoit Boissinot authored
-
Benoit Boissinot authored
Create url.py to handle all the url handling: - proxy handling - workaround various python bugs - handle username/password embedded in the url
-
Benoit Boissinot authored
-
Patrick Mezard authored
-
Patrick Mezard authored
Simpler and works under Windows.
-
- Oct 25, 2008
-
-
Patrick Mezard authored
-
- Oct 27, 2008
-
-
Patrick Mezard authored
-
Benoit Boissinot authored
-
Benoit Boissinot authored
-
- Oct 26, 2008
-
-
Dmitriy Taychenachev authored
-
- Oct 25, 2008
-
-
Joel Rosdahl authored
-
Joel Rosdahl authored
-
Joel Rosdahl authored
Without this fix, a single newline is a valid bookmark name since strip() removes it.
-
Joel Rosdahl authored
-
Joel Rosdahl authored
-
Joel Rosdahl authored
This patch fixes the following minor problem: % hg bookmark -r null test % hg bookmarks test -1:000000000000 [...] % hg commit % hg bookmarks * test 17:861ce7a241f9 That is: Bookmarks referring to the null revision are always forwarded to the current revision.
-
Joel Rosdahl authored
To me, --move sounds like "make an existing bookmark refer to another revision", but --move currently means "rename an existing bookmark". This patch renames the switch to --rename to make it easier to understand.
-
Joel Rosdahl authored
-
Joel Rosdahl authored
Otherwise the command will abort when there is no .hg/bookmarks file.
-
Joel Rosdahl authored
-
Joel Rosdahl authored
-
Joel Rosdahl authored
-
- Oct 27, 2008
-
-
Adrian Buehlmann authored
-
Benoit Boissinot authored
-
- Oct 26, 2008
-
-
Patrick Mezard authored
-
Patrick Mezard authored
-
- Oct 25, 2008
-
-
Benoit Boissinot authored
-
- Oct 24, 2008
-
-
Bartosz SKOWRON authored
-
- Oct 18, 2008
-
-
Edouard Gomez authored
When converting git repos, all stuff happening on branches seems to be ignored. This is caused by the fact a "git clone" of a remote git repo has all its branches prefixed with "origin/". By chance, the "origin/master" branch is always linked to a local "master" branch. So getheads() returns only the master head, and it ignores all the other heads. Make sure getheads() returns all heads, forcing remote branches to be return by git-rev-parse.
-
- Oct 26, 2008
-
-
Patrick Mezard authored
-
- Oct 22, 2008
-
-
Christian Ebert authored
TODO: add mail.charsets section to hgrc.5.ja.txt
-
- Oct 24, 2008
-
-
Christian Ebert authored
Last character in match output omitted to avoid infinite loop.
-
- Oct 22, 2008
-
-
David Soria Parra authored
Mercurial bookmarks are local moveable pointers to changesets. If you commit a changeset that is based on a changeset that has a bookmark on it, the bookmark is forwarded to the new changeset. Thanks to Ian Dees, Ronny Pfannschmidt for their patches, Thanks to ronny, tonfa, prianha, mpm, #mercurial for their comments and their support that helped me to get things done.
-