For me, the criterion is simple: when I'm no longer comfortable with 
pushing what I have to master.  I've just created an import branch 
<https://github.com/leo-editor/leo-editor/tree/import> to deal with recent 
problems.

Creating a new branch in this situation is dead simple:

git stash # save dubious work
git checkout -b new-branch-name
git push origin new-branch-name # optional: create remote copy
git stash pop # restore the dubious work in the new branch
git add .
git push

HTH

Edward

-- 
You received this message because you are subscribed to the Google Groups 
"leo-editor" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at https://groups.google.com/group/leo-editor.
For more options, visit https://groups.google.com/d/optout.

Reply via email to