Common git commands
- git add filename
- git commit -m "Commit Msg"
- git push origin branchname
- git checkout branchname (To move to branch)
- git checkout -b branchName (Move to branch and crete of it does not exist)
- git branch
- git branch branchName(Creates the branch)
- git merge branchName ( to get the latest code)
git add . git commit -m "Message" git push origin feature/abc-123(name if the feature branch) Origin-is the name of the remote repo name (Short Name) origin moves the changes to the branch if its available. If the feature branch is not there it will be created and the changes are moved