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:
parent
4722e06edc
commit
89f47c45df
1
Makefile
1
Makefile
@ -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
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
6
pseudo-merge.h
Normal file
@ -0,0 +1,6 @@
|
||||
#ifndef PSEUDO_MERGE_H
|
||||
#define PSEUDO_MERGE_H
|
||||
|
||||
#include "git-compat-util.h"
|
||||
|
||||
#endif
|
Loading…
Reference in New Issue
Block a user