Skip to content

CLI tool for making life with git and GitHub easier.

License

CC0-1.0, MIT licenses found

Licenses found

CC0-1.0
LICENSE-CC0
MIT
LICENSE-MIT
Notifications You must be signed in to change notification settings

electrovir/git-vir

Repository files navigation

git-vir

CLI tool for making life with git and GitHub easier.

Requires the GitHub CLI to be installed and authenticated.

How to setup

  1. Install GitHub CLI: https://github.com/cli/cli#installation
  2. Authenticate GitHub CLI: gh auth login
  3. Install this package (probably globally): npm i -g git-vir

How to use

Push

Use this instead of git push when you have a chain of several PRs that are targeting each other and they all need to be updated after the base PR is updated.

  1. Start with the base-most branch (the branch closest to your main dev branch) that needs to be updated.
  2. Make the necessary changes to that branch (rebase, commit amend, etc.).
  3. Run git-vir push.
    • if you use a remote name besides origin, you can provide that as well with git-vir <remote-name-here> push
  4. Don't do anything else in the repo's directory until the command is finished.
    • The git-vir command will checkout and push all dependent branches, recursively.
    • If you do anything with the repo while this is happening, it'll likely break this process, including pushing changes to incorrect branches.

Merge

Use this on a branch that has a chained PR which is ready for merge. It will merge the branch's PR and then rebase all chained branches.

Make sure to include a merge type: --squash, --rebase, or --merge. Like this:

git-vir merge --squash

About

CLI tool for making life with git and GitHub easier.

Resources

License

CC0-1.0, MIT licenses found

Licenses found

CC0-1.0
LICENSE-CC0
MIT
LICENSE-MIT

Stars

Watchers

Forks