1
0
Fork 0
mirror of https://github.com/git/git.git synced 2024-06-13 11:56:20 +02:00

mv: remove BOTH from enum update_mode

Since BOTH is not used anywhere in the code and its meaning is unclear,
remove it.

Helped-by: Derrick Stolee <derrickstolee@github.com>
Helped-by: Victoria Dye <vdye@github.com>
Signed-off-by: Shaoxuan Yuan <shaoxuan.yuan02@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
Shaoxuan Yuan 2022-08-09 20:09:06 +08:00 committed by Junio C Hamano
parent c08830de41
commit 9284c3ce26

View File

@ -21,7 +21,6 @@ static const char * const builtin_mv_usage[] = {
};
enum update_mode {
BOTH = 0,
WORKING_DIRECTORY = (1 << 1),
INDEX = (1 << 2),
SPARSE = (1 << 3),