Lab : Cherry Picking - Q 1

Continuing the discussion from Lab : Cherry Picking:

hi Team

On LHS terminal I have taken output and on RHS there is logical diagram .

When I compare the output of $git log --oneline with the logical diagram some of the commits do not match ( or missing ) . Can you please review and find out what is are they missing ?

ex
" 0b03ead Added the fox and grapes story " is present on LHS but not RHS .


sarah (story/hare-and-tortoise)$ git branch
  master
  story/frogs-and-ox
* story/hare-and-tortoise
sarah (story/hare-and-tortoise)$ git log --oneline
b2ce939 (HEAD -> story/hare-and-tortoise) Add first draft of hair-and-tortoise story
f0e7428 Added the story index file
ec2c1e2 (story/frogs-and-ox) Completed frogs-and-ox story
04692e3 Add incomplete frogs-and-ox story
d71b7dc Added the lion and mouse story
sarah (story/hare-and-tortoise)$
sarah (story/hare-and-tortoise)$
sarah (story/hare-and-tortoise)$ git checkout story/frogs-and-ox
Switched to branch 'story/frogs-and-ox'
sarah (story/frogs-and-ox)$
sarah (story/frogs-and-ox)$ git log --oneline
ec2c1e2 (HEAD -> story/frogs-and-ox) Completed frogs-and-ox story
04692e3 Add incomplete frogs-and-ox story
d71b7dc Added the lion and mouse story
sarah (story/frogs-and-ox)$
sarah (story/frogs-and-ox)$ git checkout master
Switched to branch 'master'
sarah (master)$
sarah (master)$ git log --oneline
9f6547b (HEAD -> master) Merge branch 'master' of http://git.example.com/sarah/story-blog
676882e (origin/master) Added the wolf and goat story
f0e7428 Added the story index file
fdf546d Updated the story index file
ec2c1e2 (story/frogs-and-ox) Completed frogs-and-ox story
0b03ead Added the fox and grapes story
04692e3 Add incomplete frogs-and-ox story
d71b7dc Added the lion and mouse story
sarah (master)$
sarah (master)$ date
Sun Dec 13 00:02:13 UTC 2020
sarah (master)$

Can you please suggest how can I upload the snapshot ?
It is the same image which is visible in Q1 itself of Lab : Cherry picking .

hello @ppnehe i think this article will answer your question :grinning:What is a git "Snapshot"? - Stack Overflow.