1
0
mirror of https://github.com/git/git.git synced 2024-11-08 15:19:28 +01:00

pseudo-merge.ch: initial commit

Add a new (empty) header file to contain the implementation for
selecting, reading, and applying pseudo-merge bitmaps.

For now this header and its corresponding implementation are left
empty, but they will evolve over the course of subsequent commit(s).

Signed-off-by: Taylor Blau <me@ttaylorr.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
Taylor Blau 2024-05-23 17:26:26 -04:00 committed by Junio C Hamano
parent 4722e06edc
commit 89f47c45df
3 changed files with 9 additions and 0 deletions

@ -1119,6 +1119,7 @@ LIB_OBJS += prompt.o
LIB_OBJS += protocol.o
LIB_OBJS += protocol-caps.o
LIB_OBJS += prune-packed.o
LIB_OBJS += pseudo-merge.o
LIB_OBJS += quote.o
LIB_OBJS += range-diff.o
LIB_OBJS += reachable.o

2
pseudo-merge.c Normal file

@ -0,0 +1,2 @@
#include "git-compat-util.h"
#include "pseudo-merge.h"

6
pseudo-merge.h Normal file

@ -0,0 +1,6 @@
#ifndef PSEUDO_MERGE_H
#define PSEUDO_MERGE_H
#include "git-compat-util.h"
#endif