RubyFlow The Ruby and Rails community linklog

×

The Ruby and Rails community linklog

Made a library? Written a blog post? Found a useful tutorial? Share it with the Ruby community here or just enjoy what everyone else has found!

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

You can use basic HTML markup (e.g. <a>) or Markdown.

As you are not logged in, you will be
directed via GitHub to signup or sign in