Time |
S |
Nick |
Message |
05:37 |
|
kzisme |
I have never used `git stash` before. If I currently have some code I want to maybe use later (80% working) but decided to go with another approach. Would it be best to use `git stash` or just throw it in a branch? (or something else?) |
07:17 |
|
prologic |
kzisme use later? |
07:17 |
|
prologic |
commit it to a branch |
07:18 |
|
prologic |
git stash is useful for more "temporary" things |
07:18 |
|
prologic |
i.e: oh let me cleanup my working dir so I can do this other operaiton, then I'll git stahs pop, keep working then commit *that* chagne |
07:18 |
|
prologic |
I don't use git stash or hg shelve that often tbh |
09:06 |
|
pdurbin |
kzisme: in that case I'd probably commit it to a branch. That said, I do use `git stash` quite a bit. It's especially useful if you want to set aside the thing you're working on for a bit to work on an entirely different part of the code base. |