merge(3p/git): Merge git upstream at v2.26.2
This commit is contained in:
		
						commit
						5229c9b232
					
				
					 1006 changed files with 149006 additions and 60819 deletions
				
			
		
							
								
								
									
										18
									
								
								third_party/git/upload-pack.c
									
										
									
									
										vendored
									
									
								
							
							
						
						
									
										18
									
								
								third_party/git/upload-pack.c
									
										
									
									
										vendored
									
									
								
							|  | @ -140,18 +140,17 @@ static void create_pack_file(const struct object_array *have_obj, | |||
| 		argv_array_push(&pack_objects.args, "--delta-base-offset"); | ||||
| 	if (use_include_tag) | ||||
| 		argv_array_push(&pack_objects.args, "--include-tag"); | ||||
| 	if (filter_options.filter_spec) { | ||||
| 		struct strbuf expanded_filter_spec = STRBUF_INIT; | ||||
| 		expand_list_objects_filter_spec(&filter_options, | ||||
| 						&expanded_filter_spec); | ||||
| 	if (filter_options.choice) { | ||||
| 		const char *spec = | ||||
| 			expand_list_objects_filter_spec(&filter_options); | ||||
| 		if (pack_objects.use_shell) { | ||||
| 			struct strbuf buf = STRBUF_INIT; | ||||
| 			sq_quote_buf(&buf, expanded_filter_spec.buf); | ||||
| 			sq_quote_buf(&buf, spec); | ||||
| 			argv_array_pushf(&pack_objects.args, "--filter=%s", buf.buf); | ||||
| 			strbuf_release(&buf); | ||||
| 		} else { | ||||
| 			argv_array_pushf(&pack_objects.args, "--filter=%s", | ||||
| 					 expanded_filter_spec.buf); | ||||
| 					 spec); | ||||
| 		} | ||||
| 	} | ||||
| 
 | ||||
|  | @ -722,7 +721,7 @@ static void deepen_by_rev_list(struct packet_writer *writer, int ac, | |||
| { | ||||
| 	struct commit_list *result; | ||||
| 
 | ||||
| 	close_commit_graph(the_repository->objects); | ||||
| 	disable_commit_graph(the_repository); | ||||
| 	result = get_shallow_commits_by_rev_list(ac, av, SHALLOW, NOT_SHALLOW); | ||||
| 	send_shallow(writer, result); | ||||
| 	free_commit_list(result); | ||||
|  | @ -884,6 +883,7 @@ static void receive_needs(struct packet_reader *reader, struct object_array *wan | |||
| 		if (skip_prefix(reader->line, "filter ", &arg)) { | ||||
| 			if (!filter_capability_requested) | ||||
| 				die("git upload-pack: filtering capability not negotiated"); | ||||
| 			list_objects_filter_die_if_populated(&filter_options); | ||||
| 			parse_list_objects_filter(&filter_options, arg); | ||||
| 			continue; | ||||
| 		} | ||||
|  | @ -1073,7 +1073,8 @@ static int upload_pack_config(const char *var, const char *value, void *unused) | |||
| 		precomposed_unicode = git_config_bool(var, value); | ||||
| 	} | ||||
| 
 | ||||
| 	if (current_config_scope() != CONFIG_SCOPE_REPO) { | ||||
| 	if (current_config_scope() != CONFIG_SCOPE_LOCAL && | ||||
| 	current_config_scope() != CONFIG_SCOPE_WORKTREE) { | ||||
| 		if (!strcmp("uploadpack.packobjectshook", var)) | ||||
| 			return git_config_string(&pack_objects_hook, var, value); | ||||
| 	} | ||||
|  | @ -1305,6 +1306,7 @@ static void process_args(struct packet_reader *request, | |||
| 		} | ||||
| 
 | ||||
| 		if (allow_filter && skip_prefix(arg, "filter ", &p)) { | ||||
| 			list_objects_filter_die_if_populated(&filter_options); | ||||
| 			parse_list_objects_filter(&filter_options, p); | ||||
| 			continue; | ||||
| 		} | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue