Day 19: Git Zero To Hero πŸš€

Β·

1 min read


To Kaise Hai Aap Log So How Are You Guys GIF - To Kaise Hai Aap Log So How  Are You Guys Eyeglasses - Discover & Share GIFs

Branch Logging

git checkout develop
git logs

let's make any small change in contact.html in develop branch and then stage, and commit it. then move to the master branch and check the logs.

develop branch logs:

master branch logs:

As u can see develop branch has some extra commits than the master as they both are diverging if we need to bring them down in one place we need to merge them, which we will study in upcoming blogs.

Git Command to see logs in graph form

git log --oneline --graph --all

Next Blog Teaser πŸ˜„

Deleting Branch🀩

Bye Bye GIF by Reactions | Gfycat

Thanks for reading πŸ™πŸ§‘

Β