SAGARFIVE

Category: GIT

4.3 Git checkout branch

(i) Default branch is master on git: Observations: Creating files in master branch touch Master-file-1 git add Master-file-1 git commit -m “m1” touch Master-file-2 git

Read More »

4.1 Git Branch

1 Creating new branch git branch <branch-name> Ex: git branch feature-1 2 Rename branch git branch -m <new-name> Ex: git branch -m “feature-one” 3 Move

Read More »