worktree: add can be created from any commit-ish
[gitweb.git] / patch-ids.h
index 9569ee0d26c5cfb3ad176d54a97440739fd2ad55..bec0f727a7bc4345e524ff04d9569c68fabd2209 100644 (file)
@@ -3,8 +3,8 @@
 
 struct patch_id {
        struct hashmap_entry ent;
-       unsigned char patch_id[GIT_SHA1_RAWSZ];
-       char seen;
+       struct object_id patch_id;
+       struct commit *commit;
 };
 
 struct patch_ids {
@@ -13,7 +13,7 @@ struct patch_ids {
 };
 
 int commit_patch_id(struct commit *commit, struct diff_options *options,
-                   unsigned char *sha1);
+                   struct object_id *oid, int);
 int init_patch_ids(struct patch_ids *);
 int free_patch_ids(struct patch_ids *);
 struct patch_id *add_commit_patch_id(struct commit *, struct patch_ids *);