Enumeration
git status
git log
git show b73481bb823d2dfb49c44f4c1e6a7e11912ed8ae
Branches
Fetch the changes to local:
git fetch origin
Create and switch to a new branch:
git checkout <branch_name>
In case you can to create a feature branch:
git checkout -b feature-branch
Pull the latest changes:
git pull origin dev
Switch to another branch:
git switch <branch-name>
Push the changes:
git push origin <branch_name>
Fetch changes to local:
git fetch
Last updated 2 days ago