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
-
retoor116451yHmm, weird. I'm doing it slightly different anyway. I use only pull and then "git rebase .". Is the git output different when you execute it multiple times?
-
Nah, the IDE does the saving for me. And i always do a fetch, update the dev branch, look at the log and then rebase my branch on it. I use my IDE's integrated gui for all that, so it is just a few clicks.
Also: If you have committed before the rebase, you can always just undo the pull by resetting to the former head. It is still there, it just isn't exposed as a branch anymore. See https://stackoverflow.com/questions... -
b2plane63881y@Jifuna same. I never understood why people don't use IDEs with autosave or IDEs that highlight if a semicolon is missing. Old boomers using 1992 technology
-
@b2plane
Because sometimes you have to change a source file in some obscure machine from ages ago that only happens to have ed installed, or plain vi, and have to deal with it.
GUIs and IDEs are nice, like automatic cars, but it never hurts to know manual too.
Remember how u all got traumatized by tapping ctrl + s several times? More than once as if once wasnt enough? That same way now i got traumatized to `git pull --rebase` more than once before i create a new branch...
rant