Git Improved 0.2.0 released
Git Improved is a wrapper command for Git. It is more intuitive and easier to understand than Git commands. For example:
-
gi join main
vs.git checkout main; git merge --no-ff <branch>
-
gi correct
vs.git commit --amend
-
gi staged
vs.git diff --cached
-
gi unstage
vs.git reset HEAD
-
gi commit:rollback
vs.git HEAD^
-
gi file:restore
vs.git reset --hard
Release 0.2.0 provides new actions gi file:rename:all
and gi commit:unmerge
.
See CHANGES.md for details.
Post a comment