ctubbsii commented on issue #1035: Fluo 1000
URL: https://github.com/apache/fluo/pull/1035#issuecomment-393666011
 
 
   @kpm1985 
   There are a few ways, but one way is:
   ```bash
   git remote add keith-turner https://github.com/keith-turner/fluo
   git remote update
   git checkout -t keith-turner/FLUO-1000
   # OPTIONAL: git rebase origin/master -i
   mvn clean verify
   ```
   
   My personal favorite way, however, is manually editing my `.git/config` 
file's "github" remote to add:
   ```
      fetch = +refs/pull/*/head:refs/remotes/github/pr/*
   ```
   And then, I just need to do:
   ```bash
   git remote update
   git checkout -t github/pr/1035
   #OPTIONAL: git rebase origin/master
   mvn clean verify
   ```

----------------------------------------------------------------
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:
[email protected]


With regards,
Apache Git Services

Reply via email to