Versions Compared

Key

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

...

Howto add a new branch
Anchor
Howto_add_branch
Howto_add_branch

...

Example for a new feature branch

Code Block
languagebash
# move to dev 
git pullcheckout alldev
branches
git pull

# git add local branch auto following/tracking remote branch
git checkout --trackb originfeature/feature/configyour-cool-feature-branch

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

Useful GIT stuff

Push style

...