git reset --hard COMMIT_ID
e.g.
git reset --hard 0f347f
With SourceTree you would probably right click on the commit and do a checkout (discard changed) or something
I know how I can do that on command line, but I want to avoid command line at all. BTW, the Reset toolbar button exists, but is disabled.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
As Colin says, right-click a commit in the log and select 'Checkout'. You can also use the Checkout toolbar button / menu item and select an item from the list in the dialog.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I've tried, but Checkout just changes what working tree state I will have. It does not move my current branch to the selected commit. Is the Reset feature missing in SourceTree though a toolbar button with this name already exists?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
'git reset' has many different modes, SourceTree uses the most common one which is to undo your working copy changes. Checkout effectively does 'git reset' followed by 'git checkout' for missing files.
You're clearly looking for 'git reset --hard' to move your branch pointer elsewhere. SourceTree doesn't support that yet.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I've logged this as a feature request here: https://jira.atlassian.com/browse/SRCTREE-770
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Not just reset --hard, but also --soft and --mixed. All those move the branch pointer, but do different things with the index or working tree.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.