#git
Read more stories on Hashnode
Articles with this tag
Hope u remember our previous blog : Day 23 - Git Blog As u can see in the above image in rebase all the commits are in a linear fashion 😃, that's a...
Rebase We integrate one branch into another in 2 ways : Merging Rebasing Rebasing is just another way to integrate changes of one branch into...
Git Conflict When u try to make same changes in a file with 2 different branches is known as Git Conflict as the name suggests there is some conflict...
Merging Let's say you have created develop branch and have made the new contact form now finally u have to merge it into your master branch. Let's do...
Introduction To Merging In our previous blogs, we created a new branch develop in which we are working on improving our contact form , we cannot...
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...