๐ฟ Branches ๐ง Create & Switch 1 2 3 4git branch feature/login git checkout feature/login # or git switch -c feature/login ๐ง List Branches 1 2git branch git branch -a ๐ง Delete Branch 1git branch -d feature/login