File tree Expand file tree Collapse file tree 5 files changed +409
-0
lines changed Expand file tree Collapse file tree 5 files changed +409
-0
lines changed Original file line number Diff line number Diff line change @@ -722,6 +722,10 @@ of clones and fetches.
722
722
time of each Git command.
723
723
See `GIT_TRACE` for available trace output options.
724
724
725
+ `GIT_TRACE_REFS`::
726
+ Enables trace messages for operations on the ref database.
727
+ See `GIT_TRACE` for available trace output options.
728
+
725
729
`GIT_TRACE_SETUP`::
726
730
Enables trace messages printing the .git, working tree and current
727
731
working directory after Git has completed its setup phase.
Original file line number Diff line number Diff line change @@ -955,6 +955,7 @@ LIB_OBJS += rebase.o
955
955
LIB_OBJS += ref-filter.o
956
956
LIB_OBJS += reflog-walk.o
957
957
LIB_OBJS += refs.o
958
+ LIB_OBJS += refs/debug.o
958
959
LIB_OBJS += refs/files-backend.o
959
960
LIB_OBJS += refs/iterator.o
960
961
LIB_OBJS += refs/packed-backend.o
Original file line number Diff line number Diff line change @@ -1774,6 +1774,7 @@ struct ref_store *get_main_ref_store(struct repository *r)
1774
1774
BUG ("attempting to get main_ref_store outside of repository" );
1775
1775
1776
1776
r -> refs_private = ref_store_init (r -> gitdir , REF_STORE_ALL_CAPS );
1777
+ r -> refs_private = maybe_debug_wrap_ref_store (r -> gitdir , r -> refs_private );
1777
1778
return r -> refs_private ;
1778
1779
}
1779
1780
You can’t perform that action at this time.
0 commit comments