Andrew's git
/
gitweb.git
/ diff
summary
|
log
|
commit
| diff |
tree
commit
grep
author
committer
pickaxe
?
re
commit: factor out set_merge_remote_desc()
author
René Scharfe
<l.s.r@web.de>
Sat, 13 Aug 2016 12:11:27 +0000
(14:11 +0200)
committer
Junio C Hamano
<gitster@pobox.com>
Sun, 14 Aug 2016 02:48:00 +0000
(19:48 -0700)
Export a helper function for allocating, populating and attaching a
merge_remote_desc to a commit.
Signed-off-by: Rene Scharfe <l.s.r@web.de>
Reviewed-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
commit.c
patch
|
blob
|
history
commit.h
patch
|
blob
|
history
raw
|
patch
|
inline
| side by side (parent:
c089320
)
diff --git
a/commit.c
b/commit.c
index dd955e3e299a0b5e04db13ad20a10c3985b56093..fc3d6fb2c372a7f668ed41c94a9abb8e4ebd18ee 100644
(file)
--- a/
commit.c
+++ b/
commit.c
@@
-1576,6
+1576,16
@@
int commit_tree_extended(const char *msg, size_t msg_len,
return result;
}
return result;
}
+void set_merge_remote_desc(struct commit *commit,
+ const char *name, struct object *obj)
+{
+ struct merge_remote_desc *desc;
+ desc = xmalloc(sizeof(*desc));
+ desc->obj = obj;
+ desc->name = xstrdup(name);
+ commit->util = desc;
+}
+
struct commit *get_merge_parent(const char *name)
{
struct object *obj;
struct commit *get_merge_parent(const char *name)
{
struct object *obj;
@@
-1585,13
+1595,8
@@
struct commit *get_merge_parent(const char *name)
return NULL;
obj = parse_object(oid.hash);
commit = (struct commit *)peel_to_type(name, 0, obj, OBJ_COMMIT);
return NULL;
obj = parse_object(oid.hash);
commit = (struct commit *)peel_to_type(name, 0, obj, OBJ_COMMIT);
- if (commit && !commit->util) {
- struct merge_remote_desc *desc;
- desc = xmalloc(sizeof(*desc));
- desc->obj = obj;
- desc->name = xstrdup(name);
- commit->util = desc;
- }
+ if (commit && !commit->util)
+ set_merge_remote_desc(commit, name, obj);
return commit;
}
return commit;
}
diff --git
a/commit.h
b/commit.h
index adf57d6c942c039d2cd415e190d181d0f3f0d550..ed2a1f0265506ff7153d9b8ea584ca268180a0c3 100644
(file)
--- a/
commit.h
+++ b/
commit.h
@@
-359,6
+359,8
@@
struct merge_remote_desc {
const char *name;
};
#define merge_remote_util(commit) ((struct merge_remote_desc *)((commit)->util))
const char *name;
};
#define merge_remote_util(commit) ((struct merge_remote_desc *)((commit)->util))
+extern void set_merge_remote_desc(struct commit *commit,
+ const char *name, struct object *obj);
/*
* Given "name" from the command line to merge, find the commit object
/*
* Given "name" from the command line to merge, find the commit object