this post was submitted on 11 Aug 2023
287 points (98.6% liked)

Programming Humor

2532 readers
1 users here now

Related Communities !programmerhumor@lemmy.ml !programmer_humor@programming.dev !programmerhumor@kbin.social !programming_horror@programming.dev

Other Programming Communities !programming@beehaw.org !programming@programming.dev !programming@lemmy.ml !programming@kbin.social !learn_programming@programming.dev !functional_programming@programming.dev !embedded_prog@lemmy.ml

founded 1 year ago
MODERATORS
 

Want to make a branch ?

git checkout

Want to make switch branches ?

git checkout

Want to get a specific file version ?

git checkout

Want to get remove changes to one file ?

Believe it or not, also git checkout

all 15 comments
sorted by: hot top controversial new old
[–] great_meh@discuss.tchncs.de 21 points 1 year ago (2 children)

I confess, I use switch now

[–] Vikthor@lemmy.world 13 points 1 year ago

And there is also git restore now.

[–] beckerist@lemmy.world 2 points 1 year ago

believe it or not...

[–] tdawg@lemmy.world 13 points 1 year ago (1 children)

Fun fact! If you have to quickly swap between two different branches you should try:

git checkout -

It will swap to the previous branch you were on. Have fun!

[–] Redscare867@lemmy.ml 5 points 1 year ago

git switch - also works for this

[–] ShustOne@lemmy.one 8 points 1 year ago

We have the best flows in the world... Because of git checkout

[–] bappity@lemmy.world 5 points 1 year ago (1 children)

only just found out how cherry picking works I love it

[–] richard_wagner@lemmy.world 2 points 1 year ago (1 children)

Nice, would you explain cherry picking to me, a dummy?

[–] bappity@lemmy.world 4 points 1 year ago* (last edited 1 year ago) (1 children)

You can copy a commit that was pushed in branch 1 and paste it to branch 2

[–] richard_wagner@lemmy.world 1 points 1 year ago (1 children)

Thanks. I wonder what effect that has on the git history of branch 2?

For some reason I thought cherry picking might be the ability to take any file from any commit on any branch and copying it to the current branch.

[–] bappity@lemmy.world 2 points 1 year ago (1 children)

the pasted commit will be at the top of the history for branch 2

[–] BradleyUffner@lemmy.world 1 points 1 year ago (1 children)

That seems like it would cause chaos if those branches were ever merged.

[–] akincisor@sh.itjust.works 6 points 1 year ago

Git's smart enough to realize it's the same commit and skip it.

Common workflow use of cherry-pick:

  1. Say you have a master branch and a release branch
  2. You have a bug in production (off your release branch)
  3. You have other changes in master that are not ready for release
  4. You make a commit to fix the bug and merge to master, run CI and verify it's fixed
  5. Cherry pick the change to the release branch and release as normal
  6. Merge with master before next release to make sure you can cut a new release

All this works without issue.

[–] rain_worl@lemmy.world 1 points 2 weeks ago

alias git to git checkout