refs: rename `refs_create_symref()` to `refs_update_symref()`
commitf151dfe3c91de744a2ced6ae701d1d8c2215bfd6
authorKarthik Nayak <karthik.188@gmail.com>
Tue, 7 May 2024 12:58:58 +0000 (7 14:58 +0200)
committerJunio C Hamano <gitster@pobox.com>
Tue, 7 May 2024 15:51:50 +0000 (7 08:51 -0700)
tree36782750e7a3f28544a06f5f45cb6daee57e2074
parent300b38e46f951bab8c6c5cb779b59322be321081
refs: rename `refs_create_symref()` to `refs_update_symref()`

The `refs_create_symref()` function is used to update/create a symref.
But it doesn't check the old target of the symref, if existing. It force
updates the symref. In this regard, the name `refs_create_symref()` is a
bit misleading. So let's rename it to `refs_update_symref()`. This is
akin to how 'git-update-ref(1)' also allows us to create apart from
update.

While we're here, rename the arguments in the function to clarify what
they actually signify and reduce confusion.

Signed-off-by: Karthik Nayak <karthik.188@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
builtin/branch.c
builtin/worktree.c
refs.c
refs.h
t/helper/test-ref-store.c