...It only barely makes sense to me. Note to self on the proper git workflow:
git branch topic-branch
git checkout topic-branch
# do some work, making n checkins, then clean them up using rebase
git rebase -i HEAD~n
git checkout master
git pull --rebase upstream master
git checkout topic-branch
git rebase master
git checkout master
git merge topic-
(
Read more... )
Comments 2
(The comment has been removed)
Reply
(The comment has been removed)
Reply
Leave a comment