Releases: s3rvac/git-edit-index
Releases · s3rvac/git-edit-index
0.7
0.6
0.5.2
0.5.1
0.4
- FEA: Changing file status from
M
orD
toP
runsgit add --patch FILE
. - FEA: Changing file status from
D
toP
runsgit reset --patch FILE
. - FEA: Added the script to PyPI so it can be installed via
pip install git-edit-index
. - FIX: Fixed unit tests under Python 2 and PyPy.
0.3.2
0.3.1
- FIX: Fixed removal of files or directories when not being inside the
repository's root path. Previously, this failed with an exception. - FIX: When an untracked directory is to be removed, use
shutil.rmtree()
instead ofos.remove()
becauseos.remove()
does not work on directories.
0.3
- FEA: Allow staging, unstaging, and reverting changes of deleted files.
- FEA: Allow removing an untracked file by removing the corresponding line in
the editor. - FEA: Allow setting the editor also by setting the
GIT_EDITOR
orVISUAL
environment variables. - FEA: When the index is empty, do not show an empty editor.
0.2
- FEA: Allow reverting changes done to a file since the last commit by removing
the line with the file from the editor. - FIX: Use
--
before files when running Git commands to prevent confusion
when a file looks like a branch or tag. - FIX: Added a missing description of the
?
status into README. - FIX: Fall back to
$EDITOR
if Git'score.editor
is not set.