App::gh::Command::Pull - pull changes from other forks.


NAME

App::gh::Command::Pull - pull changes from other forks.


USAGE

First you show up all fork network:

    $ gh network

Then you can pull changes from one:

    $ gh pull [id] (from branch) (to branch)

For example:

    $ gh pull gugod

This will create a gugod-master branch:


OPTIONS

    --branch 
    
    create tracked branch for fork.
    --merge
    merge changes from fork.

Github Steps:

Step 1: Check out a new branch to test the changes — run this from your project directory

    git checkout -b chocolateboy-optional_dep_and_warnings_fixes master

Step 2: Bring in chocolateboy's changes and test

    git pull http://github.com/chocolateboy/App-gh.git optional_dep_and_warnings_fixes

Step 3: Merge the changes and update the server

    git checkout master
    git merge chocolateboy-optional_dep_and_warnings_fixes
    git push origin master
 App::gh::Command::Pull - pull changes from other forks.