author | Junio C Hamano <gitster@pobox.com> | |
Fri, 20 Mar 2009 21:30:00 +0000 (14:30 -0700) | ||
committer | Junio C Hamano <gitster@pobox.com> | |
Fri, 20 Mar 2009 21:30:00 +0000 (14:30 -0700) |
* xx/db-refspec-vs-js-remote:
Support '*' in the middle of a refspec
Keep '*' in pattern refspecs
Use the matching function to generate the match results
Use a single function to match names against patterns
Make clone parse the default refspec with the normal code
Support '*' in the middle of a refspec
Keep '*' in pattern refspecs
Use the matching function to generate the match results
Use a single function to match names against patterns
Make clone parse the default refspec with the normal code
1 | 2 | |||
---|---|---|---|---|
builtin-clone.c | patch | | diff1 | | diff2 | | blob | history |
builtin-remote.c | patch | | diff1 | | diff2 | | blob | history |
remote.c | patch | | diff1 | | diff2 | | blob | history |
diff --cc builtin-clone.c
index 7fbfbf973c79494fe20a7d25cb3383da31574829,b385b97828fa3973494666a16f939578209fdef7..0031b5f51cd96525a265dab02494700e9d36fce8
--- 1/builtin-clone.c
--- 2/builtin-clone.c
+++ b/builtin-clone.c
struct strbuf branch_top = STRBUF_INIT, reflog_msg = STRBUF_INIT;
struct transport *transport = NULL;
char *src_ref_prefix = "refs/heads/";
+ int err = 0;
- struct refspec refspec;
+ struct refspec *refspec;
+ const char *fetch_pattern;
junk_pid = getpid();
diff --cc builtin-remote.c
Simple merge
diff --cc remote.c
Simple merge