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.
722722 time of each Git command.
723723 See `GIT_TRACE` for available trace output options.
724724
725+ `GIT_TRACE_REFS`::
726+ Enables trace messages for operations on the ref database.
727+ See `GIT_TRACE` for available trace output options.
728+
725729`GIT_TRACE_SETUP`::
726730 Enables trace messages printing the .git, working tree and current
727731 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
955955LIB_OBJS += ref-filter.o
956956LIB_OBJS += reflog-walk.o
957957LIB_OBJS += refs.o
958+ LIB_OBJS += refs/debug.o
958959LIB_OBJS += refs/files-backend.o
959960LIB_OBJS += refs/iterator.o
960961LIB_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)
17741774 BUG ("attempting to get main_ref_store outside of repository" );
17751775
17761776 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 );
17771778 return r -> refs_private ;
17781779}
17791780
You can’t perform that action at this time.
0 commit comments