Ranter
Join devRant
Do all the things like
++ or -- rants, post your own rants, comment on others' rants and build your customized dev avatar
Sign Up
Pipeless API
From the creators of devRant, Pipeless lets you power real-time personalized recommendations and activity feeds using a simple API
Learn More
Comments
-
kamen69923y@Root Yup. Good thing is that it wasn't something significant - I rewrote it in like 15 minutes.
-
Recently switched machines and left about 120 (maybe more) stashes behind. Feels weird.
-
When using GIT commits as stashes (as git stash does), you can undo deletion until the commit actually gets garbage collected - which is guaranteed to be delayed a few days by default.
whenever you think, you fucked up your GIT, chances are, that Linus thought about that possibility and prevented it from actually happening. GIT is a masterpiece. You can almost always undo in GIT.
Trust GIT as GIT is your friend - and ask StackOverflow in case you don't know how to recover. -
kamen69923y@Oktokolo Yeah, thought about that, but the first thing I found on StackOverflow returned nothing.
-
@Fast-Nop
Well, Linus isn't exactly known for his great user interfaces...
But the big IDEs come with some GUI for the most-often used GIT commands and gitk is sorta okay for looking at the tree.
There also are dedicated GUIs for GIT. And even the good ole Tortoise exists for GIT.
I prefer to keep a gitk open to quickly look at the tree before and after cherrypicking my chaotic WIP commits into nice and clean feature commits. The actual GIT commands i do in the JetBrains IDE i am writing the code in.
I now only use the command line when i really fucked up, so i need to find commits not linked to a branch anymore (like the OP) or want to rewrite history.
GIT's user interface isn't great. But for a CVS, it isn't bad either. And switching from Subversion to GIT literally made me love version control where it just was an annoying chore before. And back then i actually switched from Tortoise SVN to GIT on the command line... -
@kamen
This looks like a decent howto:
https://mobilejazz.com/blog/...
It is about finding the "dangling commit" created by git stash, which is still there but got removed from the stash list.
You can then apply the stash by commit ID or even create a new branch from it. -
@Oktokolo SVN is perfectly fine for most projects, and its simplicity is a major feature. At work, I am happy with it because all I need to remember is how directories and files work. I can still use it after months because coding is only a sometimes small part of my job scope.
Where SVN does fail, that's projects like the Linux kernel with 1k devs world-wide, that's why Git was created. It's the complexity of that problem domain that justifies the complexity of the solution, though not the shitty UI. -
@Fast-Nop
SVN works for small projects. But it was only when i started using GIT, that i realized, that SVN really sucks hard.
Branching, merging and cherrypicking are just so much less hassle in GIT than they where in SVN.
And GIT doesn't actually need more skill or knowledge if you don't do stuff like history rewriting. Where SVN would have left you fucked for good, you can almost always get your work back with GIT after spending some time on StackOverflow.
GIT isn't intuitive at first, because it just does everything different than the other version control systems.
But if you get the independend local trees and read the manual, it is surprisingly easy to git good using it.
Related Rants
"Let me just quickly clean up the old stashes since everything is merged and I won't need them... "
Guess what, I needed that stash, and I had it saved 20 minutes ago.
rant
git