I have a Git repos that looks like this:
I want to create a new branch from the highlighted commit. (It's a long story, but basically I want to submit the iOS app while working out kinks in the latest branch). I'm pretty sure this is possible, just don't know how to accomplish it... in addition, I don't see any way of using 'tags' in XCode 6.1.. is it available, just not documented?
You can do as (Check git-checkout(1) Manual Page documentation)
git checkout -b|-B <new_branch> [<start point>]
The name of a commit at which to start the new branch; see git-branch(1) for details. Defaults to HEAD
.
Create a new branch named <new_branch>
and start it at <start_point>
.
Creates the branch <new_branch>
and start it at <start_point>
; if it already exists, then reset it to <start_point>
.