author | Junio C Hamano <gitster@pobox.com> | |
Sat, 11 Aug 2007 06:17:46 +0000 (23:17 -0700) | ||
committer | Junio C Hamano <gitster@pobox.com> | |
Sat, 11 Aug 2007 06:17:46 +0000 (23:17 -0700) |
* cr/tag:
Teach "git stripspace" the --strip-comments option
Make verify-tag a builtin.
builtin-tag.c: Fix two memory leaks and minor notation changes.
launch_editor(): Heed GIT_EDITOR and core.editor settings
Make git tag a builtin.
Teach "git stripspace" the --strip-comments option
Make verify-tag a builtin.
builtin-tag.c: Fix two memory leaks and minor notation changes.
launch_editor(): Heed GIT_EDITOR and core.editor settings
Make git tag a builtin.
1 | 2 | |||
---|---|---|---|---|
Makefile | patch | | diff1 | | diff2 | | blob | history |
cache.h | patch | | diff1 | | diff2 | | blob | history |
config.c | patch | | diff1 | | diff2 | | blob | history |
environment.c | patch | | diff1 | | diff2 | | blob | history |
git.c | patch | | diff1 | | diff2 | | blob | history |
diff --cc Makefile
Simple merge
diff --cc cache.h
Simple merge
diff --cc config.c
Simple merge
diff --cc environment.c
index 2af12fd68968c5b6ceab645fd0142f4f30a6f87a,35d3f4b595872c39c640ca0f71e7846d3ad053f2..b5a6c69f7c1d214daa2556d04dd35e0976fc6e5e
--- 1/environment.c
--- 2/environment.c
+++ b/environment.c
char *pager_program;
int pager_in_use;
int pager_use_color = 1;
+ char *editor_program;
int auto_crlf = 0; /* 1: both ways, -1: only when adding git objects */
+/* This is set by setup_git_dir_gently() and/or git_default_config() */
+char *git_work_tree_cfg;
+static const char *work_tree;
+
static const char *git_dir;
static char *git_object_dir, *git_index_file, *git_refs_dir, *git_graft_file;
diff --cc git.c
Simple merge