It looks like you filled either your tags, or transferred the original / master back to an earlier version.

This is version v0.5, which still has origin/master and master tags that are very odd.
I think you just want to reset master to the last commit, however you should probably figure out how this happened in the first place, if there is something even weirder there.
The way I use tags:
- Go in and push everything to the remote repository.
- Run
git tag 1.2.3 on the command line. - Click tags on the command line
git push --tags
I think you might have caused this problem by skipping step 1 and still not having localized changes. If you can push these commits, this may fix the problem, otherwise you may need to reset your head to the corresponding version.
In Atlassian Sourcetree, which can be done by right-clicking on the corresponding check, otherwise you can do this from the command line with the git reset command:
git reset
It does not apply to the index file or the working tree in general (but it resets the head, like all modes). This leaves all of your modified “Changes Must Be Committed” files, as git status would say.
This should not delete anything either locally or remotely, but simply change what the head points to.
source share