mirror of
https://github.com/git/git
synced 2024-11-05 18:59:29 +00:00
Merge branch 'jc/maint-remove-renamed-ref' into maint
* jc/maint-remove-renamed-ref: branch -m/-M: remove undocumented RENAMED-REF Conflicts: refs.c
This commit is contained in:
commit
916034b93c
1 changed files with 0 additions and 8 deletions
8
refs.c
8
refs.c
|
@ -1211,7 +1211,6 @@ int delete_ref(const char *refname, const unsigned char *sha1, int delopt)
|
||||||
|
|
||||||
int rename_ref(const char *oldref, const char *newref, const char *logmsg)
|
int rename_ref(const char *oldref, const char *newref, const char *logmsg)
|
||||||
{
|
{
|
||||||
static const char renamed_ref[] = "RENAMED-REF";
|
|
||||||
unsigned char sha1[20], orig_sha1[20];
|
unsigned char sha1[20], orig_sha1[20];
|
||||||
int flag = 0, logmoved = 0;
|
int flag = 0, logmoved = 0;
|
||||||
struct ref_lock *lock;
|
struct ref_lock *lock;
|
||||||
|
@ -1235,13 +1234,6 @@ int rename_ref(const char *oldref, const char *newref, const char *logmsg)
|
||||||
if (!is_refname_available(newref, oldref, get_loose_refs(NULL), 0))
|
if (!is_refname_available(newref, oldref, get_loose_refs(NULL), 0))
|
||||||
return 1;
|
return 1;
|
||||||
|
|
||||||
lock = lock_ref_sha1_basic(renamed_ref, NULL, 0, NULL);
|
|
||||||
if (!lock)
|
|
||||||
return error("unable to lock %s", renamed_ref);
|
|
||||||
lock->force_write = 1;
|
|
||||||
if (write_ref_sha1(lock, orig_sha1, logmsg))
|
|
||||||
return error("unable to save current sha1 in %s", renamed_ref);
|
|
||||||
|
|
||||||
if (log && rename(git_path("logs/%s", oldref), git_path(TMP_RENAMED_LOG)))
|
if (log && rename(git_path("logs/%s", oldref), git_path(TMP_RENAMED_LOG)))
|
||||||
return error("unable to move logfile logs/%s to "TMP_RENAMED_LOG": %s",
|
return error("unable to move logfile logs/%s to "TMP_RENAMED_LOG": %s",
|
||||||
oldref, strerror(errno));
|
oldref, strerror(errno));
|
||||||
|
|
Loading…
Reference in a new issue