I found a directory named .git/sequencer
Here is its contents:
$ ls
head todo
$ cat head
d7d462cf3c0896aa09b3dec020cb21d4c4407d91
$ cat todo
pick d7d462c Initailise repository
pick b88c8bb bash_funcs: add quote_args()
These pick
lines make it look like it's the remnants of a rebase
or cherry-pick
, however:
$ git rebase --abort
No rebase in progress?
Can I safely remove this directory?