зеркало из https://github.com/microsoft/git.git
Teach rev-list since..til notation.
The King Penguin says: Now, for extra bonus points, maybe you should make "git-rev-list" also understand the "rev..rev" format (which you can't do with just the get_sha1() interface, since it expands into more). The faithful servant makes it so. Signed-off-by: Junio C Hamano <junkio@cox.net>
This commit is contained in:
Родитель
9938af6a85
Коммит
1215879cdc
38
rev-list.c
38
rev-list.c
|
@ -457,6 +457,15 @@ static struct commit *get_commit_reference(const char *name, unsigned int flags)
|
||||||
die("%s is unknown object", name);
|
die("%s is unknown object", name);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static void handle_one_commit(struct commit *com, struct commit_list **lst)
|
||||||
|
{
|
||||||
|
if (!com || com->object.flags & SEEN)
|
||||||
|
return;
|
||||||
|
com->object.flags |= SEEN;
|
||||||
|
commit_list_insert(com, lst);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
int main(int argc, char **argv)
|
int main(int argc, char **argv)
|
||||||
{
|
{
|
||||||
struct commit_list *list = NULL;
|
struct commit_list *list = NULL;
|
||||||
|
@ -465,6 +474,7 @@ int main(int argc, char **argv)
|
||||||
for (i = 1 ; i < argc; i++) {
|
for (i = 1 ; i < argc; i++) {
|
||||||
int flags;
|
int flags;
|
||||||
char *arg = argv[i];
|
char *arg = argv[i];
|
||||||
|
char *dotdot;
|
||||||
struct commit *commit;
|
struct commit *commit;
|
||||||
|
|
||||||
if (!strncmp(arg, "--max-count=", 12)) {
|
if (!strncmp(arg, "--max-count=", 12)) {
|
||||||
|
@ -523,21 +533,33 @@ int main(int argc, char **argv)
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (show_breaks && !merge_order)
|
||||||
|
usage(rev_list_usage);
|
||||||
|
|
||||||
flags = 0;
|
flags = 0;
|
||||||
|
dotdot = strstr(arg, "..");
|
||||||
|
if (dotdot) {
|
||||||
|
char *next = dotdot + 2;
|
||||||
|
struct commit *exclude = NULL;
|
||||||
|
struct commit *include = NULL;
|
||||||
|
*dotdot = 0;
|
||||||
|
exclude = get_commit_reference(arg, UNINTERESTING);
|
||||||
|
include = get_commit_reference(next, 0);
|
||||||
|
if (exclude && include) {
|
||||||
|
limited = 1;
|
||||||
|
handle_one_commit(exclude, &list);
|
||||||
|
handle_one_commit(include, &list);
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
*next = '.';
|
||||||
|
}
|
||||||
if (*arg == '^') {
|
if (*arg == '^') {
|
||||||
flags = UNINTERESTING;
|
flags = UNINTERESTING;
|
||||||
arg++;
|
arg++;
|
||||||
limited = 1;
|
limited = 1;
|
||||||
}
|
}
|
||||||
if (show_breaks && !merge_order)
|
|
||||||
usage(rev_list_usage);
|
|
||||||
commit = get_commit_reference(arg, flags);
|
commit = get_commit_reference(arg, flags);
|
||||||
if (!commit)
|
handle_one_commit(commit, &list);
|
||||||
continue;
|
|
||||||
if (commit->object.flags & SEEN)
|
|
||||||
continue;
|
|
||||||
commit->object.flags |= SEEN;
|
|
||||||
commit_list_insert(commit, &list);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!merge_order) {
|
if (!merge_order) {
|
||||||
|
|
Загрузка…
Ссылка в новой задаче