Day 19: Git Zero To Hero π
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π€©
Thanks for reading ππ§‘
Β