Commit Graph

74 Commits

Author SHA1 Message Date
root@coffee.suse.com
89e50a06e8 Fix hgit revtree bug with stop revision handling 2005-09-14 13:14:20 -05:00
mason@suse.com
62c6d5a3e2 Convert hgk to use the hgit extension, and upate to the latest gitk 2005-09-13 19:33:18 -05:00
mason@suse.com
be6155cb7a Turn hgit into an extension, and add commands supporting the latest gitk 2005-09-13 19:33:10 -05:00
mason@suse.com
e2124d8d4f Fix off by one in convert-repo tags
--- crew.orig/contrib/convert-repo	2005-07-16 11:52:06.000000000 -0400
+++ crew/contrib/convert-repo	2005-09-02 02:58:14.000000000 -0400
@@ -86,9 +86,7 @@ class convert_git:
         for f in os.listdir(self.path + "/.git/refs/tags"):
             try:
                 h = file(self.path + "/.git/refs/tags/" + f).read().strip()
-                p, a, d, m = self.getcommit(h)
-                if not p: p = [h] # git is ugly, don't blame me
-                tags[f] = p[0]
+                tags[f] = h
             except:
                 pass
         return tags

--
_______________________________________________
Mercurial mailing list
Mercurial@selenic.com
http://selenic.com/mailman/listinfo/mercurial
2005-09-13 19:32:43 -05:00
Bryan O'Sullivan
a0d466ff60 patchbomb: add TLS and SMTP AUTH support.
Original patch from Lee Cantey <lcantey@gmail.com>.
2005-09-09 10:59:05 -07:00
Bryan O'Sullivan
3fdd132f7c patchbomb: continue if we can't import readline. 2005-09-04 15:12:20 -07:00
jdc@uwo.ca
0780d896b0 Fix mercurial.el help. 2005-08-31 11:58:15 -07:00
jdc@uwo.ca
cff6ac7682 Adjust hg-strip and hg-chomp regexps. 2005-08-31 11:56:58 -07:00
Bryan O'Sullivan
18fbb99246 Emacs: fix invocations of "hg log" to match current behaviour of log. 2005-08-31 10:54:00 -07:00
TK Soh
c13eeccd08 Regenerate tcsh_completion after bugfix in generator script 2005-08-30 11:22:29 +02:00
TK Soh
b2311cf1a4 tcsh_completion_build.sh: fixed error caused by xargs on Linux 2005-08-30 11:17:20 +02:00
TK Soh
1a860fa9c2 Add tcsh_completion to contrib 2005-08-30 11:16:31 +02:00
TK Soh
cfb26abf9a Add contrib script for generating tcsh completion source 2005-08-30 11:16:31 +02:00
bos@serpentine.internal.keyresearch.com
5bcd6d125f patchbomb: fix up confusion between strings and lists of strings. 2005-08-29 12:15:37 -07:00
Alexis S. L. Carvalho
d3995fac64 bash_completion: try to use bash3 features if they're available
This does NOT break completion for bash 2.05b (I haven't tested
earlier versions)
2005-08-29 20:37:07 +02:00
Alexis S. L. Carvalho
d75704cfb1 bash_completion: small cleanup and bugfix
_hg_count_non_option wasn't taking global options into account
while counting non-option arguments.

It also used only its first argument.
2005-08-29 20:37:07 +02:00
Alexis S. L. Carvalho
098e537d63 teach bash_completion about --cwd 2005-08-29 20:37:07 +02:00
Alexis S. L. Carvalho
c499be626e bash_completion: better handling of aliases
Instead of listing every alias in the big case..esac, use hg help
to get the canonical name of the command.
2005-08-29 20:37:07 +02:00
Alexis S. L. Carvalho
a6928b8448 bash_completion: update for new help output format 2005-08-29 20:37:07 +02:00
Thomas Arendsen Hein
bb21019e04 Make diffstat optional for patchbomb script. 2005-08-28 18:53:43 +02:00
Thomas Arendsen Hein
13d63f534a Variable 'body' was missing in patchbomb script. 2005-08-28 18:52:55 +02:00
mpm@selenic.com
b7bf6330ab patchbomb: eliminate silly complete summary message
No longer makes sense without attachments
2005-08-27 23:10:49 -07:00
mpm@selenic.com
e47546f442 bash_completion: add debugindex and debugdata support 2005-08-27 20:42:53 -07:00
Bryan O'Sullivan
22c1455510 Merge with MPM. 2005-08-24 12:50:11 -07:00
Bryan O'Sullivan
8dbc4cf5bc Get patchbomb working with tip again. 2005-08-24 12:43:09 -07:00
mpm@selenic.com
49b9ae7f87 Add some aliases 2005-08-24 00:12:04 -07:00
Bryan O'Sullivan
00135fa2ee Emacs: implement hg-incoming, hg-outgoing and hg-push. 2005-08-23 21:53:13 -07:00
Bryan O'Sullivan
de1873f73e Emacs: fix up hg-log and hg-diff to operate more uniformly. 2005-08-23 16:46:10 -07:00
Bryan O'Sullivan
a8e6cde878 Merge with MPM. 2005-08-23 15:42:06 -07:00
Bryan O'Sullivan
cc1aaeb8c2 Merge with MPM. 2005-08-23 15:30:06 -07:00
bos@serpentine.internal.keyresearch.com
d2ff3fcc48 Sync buffers prior to doing a diff. 2005-08-23 15:27:17 -07:00
bos@serpentine.internal.keyresearch.com
f58baa49ba Emacs: search for hg in path before looking in funny places. 2005-08-23 14:51:52 -07:00
bos@serpentine.internal.keyresearch.com
3ba9b828ed Emacs: improved GNU Emacs support. 2005-08-22 15:29:55 -07:00
bos@serpentine.internal.keyresearch.com
68be5d4fdf Emacs support: numerous changes.
Most SCM commands now work in derived buffers (e.g. diff viewing
buffers) as well as buffers backed by files.
diff and log now work properly on repositories and files.
Commit support is more solid.
Doc strings are better.
2005-08-22 15:08:20 -07:00
Bryan O'Sullivan
fe8a00152a Emacs: update mode lines properly after commit. 2005-08-22 03:41:09 -07:00
Bryan O'Sullivan
dab396d542 Emacs: kill commit buffer once it's done with. 2005-08-22 03:27:27 -07:00
Bryan O'Sullivan
2ccf192f2f Emacs: first cut at commit support. 2005-08-22 03:16:32 -07:00
Bryan O'Sullivan
0b8a9067ed contrib/patchbomb: Fix buglet with empty cc list. 2005-08-21 23:33:02 -08:00
Bryan O'Sullivan
8c7c780064 Fix handling of addresses in hgrc. 2005-08-21 23:03:14 -08:00
Bryan O'Sullivan
d11b84dd65 Emacs: document existing functions. 2005-08-21 22:46:57 -08:00
Bryan O'Sullivan
b1076155ac Emacs support: add hg-revert-buffer. 2005-08-21 21:51:01 -08:00
mpm@selenic.com
e0aefc415d Make mercurial.el load with GNU emacs 2005-08-19 18:47:05 -08:00
mpm@selenic.com
ac03d564fb Remove -C alias for --cwd 2005-08-19 16:51:44 -08:00
mpm@selenic.com
8414ebc4a3 Merge with TAH 2005-08-19 16:45:25 -08:00
Bryan O'Sullivan
efcb2fa17c In-progress Emacs snapshot. 2005-08-19 06:41:29 -08:00
TK Soh
fe5a0014c8 bash_completion: support GNU sed 3 and non-GNU sed
replaced command 'Q' introduced in GNU sed 4, in order to support
platforms with older sed.
2005-08-19 06:04:46 +01:00
Bryan O'Sullivan
9d3eb87b87 Merge with MPM. 2005-08-18 12:32:15 -08:00
Bryan O'Sullivan
84636de0f5 Initial skeleton for mercurial.el. 2005-08-18 12:27:57 -08:00
mpm@selenic.com
a82d31d71f bash: Add smarter completion of add/commit/remove/forget/diff/revert
Use hg status to determine which files are interesting for various commands.
Thus, hg add [tab] finds unknown files, and hg commit [tab] finds added, modified, or removed files.
2005-08-17 12:22:12 -08:00
mpm@selenic.com
7eaff8988b Add incoming to completions 2005-08-16 19:31:30 -08:00