27.10.2020, 23:10, "Filipp Bakanov" <filipp@xxxxxxxxxx>: > Hi! I suggest to add "unadd" command, that will undo a git add command. > > git unadd path/to/file > > It will be an alias to: > > git reset HEAD -- path/to/file It can be done in shorter way: git reset path/to/file > > The motivation is that I always forget syntax and have to google each > time I want to undo accidentally added files. Unadd is just much > easier to remember and quite obvious. -- Regards, Konstantin