You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
I know this question is everywhere online and almost everywhere has the solution, but each time I try a different solution I lose my work when switching branches or something. I figure this may be from the differences in command line vs. sourcetree's UI. Can someone help me with this scenario?
What I want to do: move the master to the head, delete the throwaway branch.
I don't care if the commits on the master branch are deleted.
https://gyazo.com/40b19c085f49132889964c1e6460352e
I made some changes to the project I was working on awhile back, but then decided I wanted to revert those changes. So I was left with the master a few commits up, and then I made a new commit after checking out the commit where the branch starts. What I wanted to do was move the master to the head, but some solutions require checking out master and making a new branch. I did just that, making a new branch called throwaway, but ironically that threw away my commit where the head is - not sure why. So now I am stuck with the throwaway branch there, and no progress toward moving master -> head.
Thanks a lot!
Hello! So it seems there's some confusion as to what "HEAD" means. HEAD is a pointer to a commit, and in this case it's a pointer to that commit you switched to rather than the latest commit on a branch. Specifically, you're on a detached HEAD, which means any commits you make right now might get lost.
The easiest way to fix this is to create a new branch. This is probably what the "throwaway" is supposed to be. Once you make that new branch, switch back to "master" and then merge that previous branch into master. Once merged, do a push, and that "origin/master" and "origin/HEAD" indicator should now be back on the "Reverted to Controller" commit.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.