Sync with 2.33.8
[git/debian.git] / reset.h
blob12f83c78e28094182530046d5891545bcb1b5e90
1 #ifndef RESET_H
2 #define RESET_H
4 #include "hash.h"
5 #include "repository.h"
7 #define GIT_REFLOG_ACTION_ENVIRONMENT "GIT_REFLOG_ACTION"
9 #define RESET_HEAD_DETACH (1<<0)
10 #define RESET_HEAD_HARD (1<<1)
11 #define RESET_HEAD_RUN_POST_CHECKOUT_HOOK (1<<2)
12 #define RESET_HEAD_REFS_ONLY (1<<3)
13 #define RESET_ORIG_HEAD (1<<4)
15 int reset_head(struct repository *r, struct object_id *oid, const char *action,
16 const char *switch_to_branch, unsigned flags,
17 const char *reflog_orig_head, const char *reflog_head,
18 const char *default_reflog_action);
20 #endif