diff --git a/Days/day2.md b/Days/day2.md index b0b5f42..09101dd 100755 --- a/Days/day2.md +++ b/Days/day2.md @@ -3,9 +3,10 @@ On the second day, I learned the following things about Git. - `git branch` will show the list of branches of Git. Branch is created to divide the data functionalities or use cases. - `git branch branchname` will create a new branch. - `git checkout branchname` will help you switch to another branch. +- `git checkout -b branchname` will create a new branch and switch to that branch too. - `git rebase -i hash value` will merge multiple commits into a single commit. - `git merge branchname` will merge the branch into another. Here the name of the branch would a branch that you want to merge into another branch. ## **Explaining it in a video** -Here you can get an explanation in a video. [2/60 Day of DevOps Challenge]() \ No newline at end of file +Here you can get an explanation in a video. [2/60 Day of DevOps Challenge]()