keith-turner commented on issue #969: [WIP] Issue-967
URL: https://github.com/apache/fluo/pull/969#issuecomment-345737294
 
 
   @jkosh44 I noticed your branch is based off an older commit.  I usually add 
a git remote called upstream like the following.
   
   ```bash
   git remote add upstream https://github.com/apache/fluo.git
   ```
   Then with that I added I update my local master with the latest commits from 
upstream before branching for a new issue.
   
   ```bash
   # update all remote tracking branches
   git fetch --all
   git checkout master
   # bring local master branch up to date with latest commits
   git merge upstream/master
   # create new branch from latest master
   git checkout -b issue-xyz
   ```
   
   Don't worry about this PR being based on an older commit, its ok.  

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services

Reply via email to