Commit 52b188f6 by schu

rename-reference: use normalized path

Signed-off-by: schu <schu-github@schulog.org>
parent 340fc0d4
...@@ -1117,6 +1117,8 @@ static int reference_rename(git_reference *ref, const char *new_name, int force) ...@@ -1117,6 +1117,8 @@ static int reference_rename(git_reference *ref, const char *new_name, int force)
if (error < GIT_SUCCESS) if (error < GIT_SUCCESS)
return git__rethrow(error, "Failed to rename reference"); return git__rethrow(error, "Failed to rename reference");
new_name = normalized_name;
/* Ensure we're not going to overwrite an existing reference /* Ensure we're not going to overwrite an existing reference
unless the user has allowed us */ unless the user has allowed us */
error = git_reference_lookup(&looked_up_ref, ref->owner, new_name); error = git_reference_lookup(&looked_up_ref, ref->owner, new_name);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment