revert(3p/git): Revert merge of git upstream at v2.26.2
This causes cgit to serve error pages, which is undesirable. This reverts commit5229c9b232, reversing changes made tof2b211131f.
This commit is contained in:
parent
6f8fbf4aa4
commit
93ba78d6f4
1006 changed files with 60537 additions and 148724 deletions
19
third_party/git/builtin/gc.c
vendored
19
third_party/git/builtin/gc.c
vendored
|
|
@ -27,7 +27,6 @@
|
|||
#include "pack-objects.h"
|
||||
#include "blob.h"
|
||||
#include "tree.h"
|
||||
#include "promisor-remote.h"
|
||||
|
||||
#define FAILED_RUN "failed to run %s"
|
||||
|
||||
|
|
@ -42,6 +41,7 @@ static int aggressive_depth = 50;
|
|||
static int aggressive_window = 250;
|
||||
static int gc_auto_threshold = 6700;
|
||||
static int gc_auto_pack_limit = 50;
|
||||
static int gc_write_commit_graph;
|
||||
static int detach_auto = 1;
|
||||
static timestamp_t gc_log_expire_time;
|
||||
static const char *gc_log_expire = "1.day.ago";
|
||||
|
|
@ -148,6 +148,7 @@ static void gc_config(void)
|
|||
git_config_get_int("gc.aggressivedepth", &aggressive_depth);
|
||||
git_config_get_int("gc.auto", &gc_auto_threshold);
|
||||
git_config_get_int("gc.autopacklimit", &gc_auto_pack_limit);
|
||||
git_config_get_bool("gc.writecommitgraph", &gc_write_commit_graph);
|
||||
git_config_get_bool("gc.autodetach", &detach_auto);
|
||||
git_config_get_expiry("gc.pruneexpire", &prune_expire);
|
||||
git_config_get_expiry("gc.worktreepruneexpire", &prune_worktrees_expire);
|
||||
|
|
@ -458,7 +459,7 @@ static const char *lock_repo_for_gc(int force, pid_t* ret_pid)
|
|||
/*
|
||||
* Returns 0 if there was no previous error and gc can proceed, 1 if
|
||||
* gc should not proceed due to an error in the last run. Prints a
|
||||
* message and returns -1 if an error occurred while reading gc.log
|
||||
* message and returns -1 if an error occured while reading gc.log
|
||||
*/
|
||||
static int report_last_gc_error(void)
|
||||
{
|
||||
|
|
@ -601,7 +602,7 @@ int cmd_gc(int argc, const char **argv, const char *prefix)
|
|||
if (detach_auto) {
|
||||
int ret = report_last_gc_error();
|
||||
if (ret < 0)
|
||||
/* an I/O error occurred, already reported */
|
||||
/* an I/O error occured, already reported */
|
||||
exit(128);
|
||||
if (ret == 1)
|
||||
/* Last gc --auto failed. Skip this one. */
|
||||
|
|
@ -660,7 +661,7 @@ int cmd_gc(int argc, const char **argv, const char *prefix)
|
|||
argv_array_push(&prune, prune_expire);
|
||||
if (quiet)
|
||||
argv_array_push(&prune, "--no-progress");
|
||||
if (has_promisor_remote())
|
||||
if (repository_format_partial_clone)
|
||||
argv_array_push(&prune,
|
||||
"--exclude-promisor-objects");
|
||||
if (run_command_v_opt(prune.argv, RUN_GIT_CMD))
|
||||
|
|
@ -684,11 +685,11 @@ int cmd_gc(int argc, const char **argv, const char *prefix)
|
|||
clean_pack_garbage();
|
||||
}
|
||||
|
||||
prepare_repo_settings(the_repository);
|
||||
if (the_repository->settings.gc_write_commit_graph == 1)
|
||||
write_commit_graph_reachable(the_repository->objects->odb,
|
||||
!quiet && !daemonized ? COMMIT_GRAPH_WRITE_PROGRESS : 0,
|
||||
NULL);
|
||||
if (gc_write_commit_graph &&
|
||||
write_commit_graph_reachable(get_object_directory(),
|
||||
!quiet && !daemonized ? COMMIT_GRAPH_PROGRESS : 0,
|
||||
NULL))
|
||||
return 1;
|
||||
|
||||
if (auto_gc && too_many_loose_objects())
|
||||
warning(_("There are too many unreachable loose objects; "
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue