Re: Another workflow (pull requests) question.

2016-11-15 Thread rod
(Apologies if this has been brought up before but I couldn't find a way to search the mailing list archives...) Travis CI has tight integration with Github for testing PRs, and may offer what you need... https://docs.travis-ci.com/user/osx-ci-environment/ https://docs.travis-ci.com/user/customizi

Re: Working with git: git equivalent of "svn up -r..."

2016-11-25 Thread rod
Depends what you want to do when you get there really. Disclaimer: --hard will wipe out any changes you have in your WC This will move your current branch to point to that commit... git reset --hard 72164060176afd82227b03e05aede0ce292f093f But this applies to the whole git checkout, not a subtr

Re: Working with git: git equivalent of "svn up -r..."

2016-11-25 Thread rod
Try excluding --hard then.. git reset COMMIT On Fri, Nov 25, 2016 at 2:27 PM Ryan Schmidt wrote: > > > On Nov 25, 2016, at 8:25 AM, rod wrote: > > > > Depends what you want to do when you get there really. > > > > Disclaimer: --hard will wipe out any changes

Re: Working with git: git equivalent of "svn up -r..."

2016-11-25 Thread rod
(Possibly outside the scope of the discussion but I've noticed it mentioned a few times...) Git works by managing the whole WC together, so changing individual subtrees and keeping modified files lying around are not the best way to work with it. Branches and commits can be as ephemeral as needed.