merge(3p/git): Merge git subtree at v2.29.2
This also bumps the stable nixpkgs to 20.09 as of 2020-11-21, because there is some breakage in the git build related to the netrc credentials helper which someone has taken care of in nixpkgs. The stable channel is not used for anything other than git, so this should be fine. Change-Id: I3575a19dab09e1e9556cf8231d717de9890484fb
This commit is contained in:
		
							parent
							
								
									082c006c04
								
							
						
					
					
						commit
						f4609b896f
					
				
					 1485 changed files with 241535 additions and 109418 deletions
				
			
		
							
								
								
									
										16
									
								
								third_party/git/builtin/patch-id.c
									
										
									
									
										vendored
									
									
								
							
							
						
						
									
										16
									
								
								third_party/git/builtin/patch-id.c
									
										
									
									
										vendored
									
									
								
							|  | @ -1,16 +1,12 @@ | |||
| #include "cache.h" | ||||
| #include "builtin.h" | ||||
| #include "config.h" | ||||
| #include "diff.h" | ||||
| 
 | ||||
| static void flush_current_id(int patchlen, struct object_id *id, struct object_id *result) | ||||
| { | ||||
| 	char name[50]; | ||||
| 
 | ||||
| 	if (!patchlen) | ||||
| 		return; | ||||
| 
 | ||||
| 	memcpy(name, oid_to_hex(id), GIT_SHA1_HEXSZ + 1); | ||||
| 	printf("%s %s\n", oid_to_hex(result), name); | ||||
| 	if (patchlen) | ||||
| 		printf("%s %s\n", oid_to_hex(result), oid_to_hex(id)); | ||||
| } | ||||
| 
 | ||||
| static int remove_space(char *line) | ||||
|  | @ -60,9 +56,9 @@ static int get_one_patchid(struct object_id *next_oid, struct object_id *result, | |||
| { | ||||
| 	int patchlen = 0, found_next = 0; | ||||
| 	int before = -1, after = -1; | ||||
| 	git_SHA_CTX ctx; | ||||
| 	git_hash_ctx ctx; | ||||
| 
 | ||||
| 	git_SHA1_Init(&ctx); | ||||
| 	the_hash_algo->init_fn(&ctx); | ||||
| 	oidclr(result); | ||||
| 
 | ||||
| 	while (strbuf_getwholeline(line_buf, stdin, '\n') != EOF) { | ||||
|  | @ -122,7 +118,7 @@ static int get_one_patchid(struct object_id *next_oid, struct object_id *result, | |||
| 		/* Compute the sha without whitespace */ | ||||
| 		len = remove_space(line); | ||||
| 		patchlen += len; | ||||
| 		git_SHA1_Update(&ctx, line, len); | ||||
| 		the_hash_algo->update_fn(&ctx, line, len); | ||||
| 	} | ||||
| 
 | ||||
| 	if (!found_next) | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue