go-pr

0.0.2 • Public • Published

go-pr

Opens the PR for the currently checked out Git branch.

Install

npm install -g go-pr

Usage

go-pr

Complete example:

# Create a feature branch.
git checkout -b feature-branch

# Make a commit with some new feature.
echo "foo" > foo.txt
git commit -a -m "Some cool feature."

# Push the feature to a remote.
git push -u origin feature-branch

# Make a PR from feature-branch via GitHub's UI...
# Later, reviewers add some comments...

# Modify the commit.
echo "bar" > foo.txt
git commit -a --amend
git push origin feature-branch

# Need to respond to comments, but don't have a browser window... go-pr to the rescue!
go-pr

/go-pr/

    Package Sidebar

    Install

    npm i go-pr

    Weekly Downloads

    0

    Version

    0.0.2

    License

    MIT

    Unpacked Size

    9.03 kB

    Total Files

    4

    Last publish

    Collaborators

    • dgp1130