Hi Even,
what Pharo version are you using? What Iceberg version (the one that comes by default)?
If you're in Pharo 6 with the default iceberg version, I'd suggest you to:
- update iceberg
- or just fix it from the command line
$ git reset --hard HEAD~1
should do what you want.
If you already have latest iceberg release (because you loaded it, or you are in Pharo 7), that can be done from a playground but not (yet) from the UI.
You can try:
- right click on your repository -> inspect
- Then evaluate:
self branch commit: self branch commit parent.
self headCommit adopt.
Which will do exactly the same as the command line reset --hard does.