(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
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
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
(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.