Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languagebash
# move to dev 
git checkout dev
git pull

# git add local branch auto following/tracking remote branch
git checkout -b feature/your-cool-feature-branch

# your work and commits
git add -p
git commit -m "Commit Message XYZ"

# git push auto to remote branch -> 
# see Git config global push.default = simple
# NOTE: if not working – just follow git instructions
git push

...