Skip to content

Commit 8f49151

Browse files
pks-tgitster
authored andcommitted
object-store: rename files to "odb.{c,h}"
In the preceding commits we have renamed the structures contained in "object-store.h" to `struct object_database` and `struct odb_backend`. As such, the code files "object-store.{c,h}" are confusingly named now. Rename them to "odb.{c,h}" accordingly. Signed-off-by: Patrick Steinhardt <[email protected]> Signed-off-by: Junio C Hamano <[email protected]>
1 parent a1e2581 commit 8f49151

File tree

126 files changed

+129
-129
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

126 files changed

+129
-129
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1085,8 +1085,8 @@ LIB_OBJS += notes.o
10851085
LIB_OBJS += object-file-convert.o
10861086
LIB_OBJS += object-file.o
10871087
LIB_OBJS += object-name.o
1088-
LIB_OBJS += object-store.o
10891088
LIB_OBJS += object.o
1089+
LIB_OBJS += odb.o
10901090
LIB_OBJS += oid-array.o
10911091
LIB_OBJS += oidmap.o
10921092
LIB_OBJS += oidset.o

apply.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
#include "abspath.h"
1515
#include "base85.h"
1616
#include "config.h"
17-
#include "object-store.h"
17+
#include "odb.h"
1818
#include "delta.h"
1919
#include "diff.h"
2020
#include "dir.h"

archive-tar.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
#include "hex.h"
1212
#include "tar.h"
1313
#include "archive.h"
14-
#include "object-store.h"
14+
#include "odb.h"
1515
#include "strbuf.h"
1616
#include "streaming.h"
1717
#include "run-command.h"

archive-zip.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
#include "hex.h"
1313
#include "streaming.h"
1414
#include "utf8.h"
15-
#include "object-store.h"
15+
#include "odb.h"
1616
#include "strbuf.h"
1717
#include "userdiff.h"
1818
#include "write-or-die.h"

archive.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
#include "pretty.h"
1515
#include "setup.h"
1616
#include "refs.h"
17-
#include "object-store.h"
17+
#include "odb.h"
1818
#include "commit.h"
1919
#include "tree.h"
2020
#include "tree-walk.h"

attr.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
#include "read-cache-ll.h"
2323
#include "refs.h"
2424
#include "revision.h"
25-
#include "object-store.h"
25+
#include "odb.h"
2626
#include "setup.h"
2727
#include "thread-utils.h"
2828
#include "tree-walk.h"

bisect.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
#include "commit-slab.h"
2121
#include "commit-reach.h"
2222
#include "object-name.h"
23-
#include "object-store.h"
23+
#include "odb.h"
2424
#include "path.h"
2525
#include "dir.h"
2626

blame.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
#include "git-compat-util.h"
55
#include "refs.h"
6-
#include "object-store.h"
6+
#include "odb.h"
77
#include "cache-tree.h"
88
#include "mergesort.h"
99
#include "commit.h"

builtin/backfill.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
#include "tree.h"
1414
#include "tree-walk.h"
1515
#include "object.h"
16-
#include "object-store.h"
16+
#include "odb.h"
1717
#include "oid-array.h"
1818
#include "oidset.h"
1919
#include "promisor-remote.h"

builtin/blame.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
#include "line-log.h"
2929
#include "progress.h"
3030
#include "object-name.h"
31-
#include "object-store.h"
31+
#include "odb.h"
3232
#include "pager.h"
3333
#include "blame.h"
3434
#include "refs.h"

0 commit comments

Comments
 (0)