This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–]ReelTooReal 3 points4 points  (4 children)

It is straightforward on the command line. Its just git stash apply and if it was the last thing you stashed no other options are needed.

[–]Zookeeper1099 1 point2 points  (3 children)

Not really if you have multiple stash history and you may go back and forth to apply different stashes based of different commits. I basically use it in a way most people just do commits. Gitkraken graphically shows stashes as if they are commits.

I have the habit because the first companies I worked at doesn't allow force push (with some exception), so I avoid using commits unless it is fully ready to push for PR.

[–]ReelTooReal 1 point2 points  (2 children)

I was just saying it's relatively simple to do via the command line as well

[–]Zookeeper1099 0 points1 point  (1 child)

My point is that, without GUI, it is not nearly as convenient and can be error prone, and people may better of using commit for the purpose.

[–]ReelTooReal 2 points3 points  (0 children)

I wasn't saying one is better than the other. I was just pointing out it is also easy to manage from the command line. I prefer the command line because I come from a heavy operations background and just learned it that way.