git-edit-index
git-edit-index copied to clipboard
A git command that opens an editor to stage or unstage files.
``` $ git st On branch ... Changes to be committed: (use "git reset HEAD ..." to unstage) renamed: X.scala -> Y.scala Changes not staged for commit: (use "git add...
It would be useful to add support for files having merge conflicts (status `U`).
In #9, a preliminary support for ignored files was implemented. Next, the handling of ignored files can be improved by the ability to add files into `.gitignore`. As noted in...
It would be useful to add support for partially staged files (status `MM`).
It would be useful to add support for copied files (status `C`).
It would be useful to add support for renamed files (status `R`).