mirror of
				https://git.proxmox.com/git/libgit2
				synced 2025-11-04 01:08:41 +00:00 
			
		
		
		
	Reflog: correct "new" id for reattaching HEAD
This commit is contained in:
		
							parent
							
								
									7ac1b89942
								
							
						
					
					
						commit
						ee8e6afda9
					
				@ -1452,7 +1452,9 @@ static int reflog_append(refdb_fs_backend *backend, const git_reference *ref, co
 | 
			
		||||
	if (error < 0)
 | 
			
		||||
		return error;
 | 
			
		||||
 | 
			
		||||
	if (git_reference_target(ref) != NULL)
 | 
			
		||||
	if (git_reference_symbolic_target(ref) != NULL)
 | 
			
		||||
		git_reference_name_to_id(&new_id, repo, git_reference_symbolic_target(ref));
 | 
			
		||||
	else if (git_reference_target(ref) != NULL)
 | 
			
		||||
		git_oid_cpy(&new_id, git_reference_target(ref));
 | 
			
		||||
 | 
			
		||||
	if ((error = serialize_reflog_entry(&buf, &old_id, &new_id, who, message)) < 0)
 | 
			
		||||
 | 
			
		||||
		Loading…
	
		Reference in New Issue
	
	Block a user