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...
ralvaracode.hashnode.dev1 min read