Set New Branch in Git
If you want to add a new feature to an app you have cloned. You can create a new branch for that feature following these git commands. git switch -c <branch-name> // creates the branch git add <file-or-folder> // or use '.' to stage all changes g...
Nov 15, 20251 min read8


