Skip to content

Latest commit

 

History

History
21 lines (10 loc) · 254 Bytes

File metadata and controls

21 lines (10 loc) · 254 Bytes

Braching commands

git branch # displays the branches

git checkout -b feature-1

git switch

git checkout -b feature-2

git switch

vim filename

git add filename

git commit -m "chore: Added a new file"

git branch -d feature-2