You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Just a high level Gitflow discussion to this repo.
Please make sure to follow the instructions here, and after adding your SSH Key to the Github repo,
Fetch any updates from GitHub using:
git fetch
Then checkout yourlocaldev branch:
git checkout dev
Create a new branch to work on a new feature or fix an existing bug:
git checkout -b tutX/featureY
Whilst working on and regularly commit changes to your local feature branch, make sure to regularly merge and stay up to date with any changes to the dev branch on GitHub:
git fetch origin dev
Regularly push your local tutX/featureY branch to GitHub to keep your colleagues aware of any changes you're making:
git push origin tutX/featureY # The first time that you do this you may need to tell git where to push the branch to: git push -u origin tutX/featureY
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
Just a high level Gitflow discussion to this repo.
Please make sure to follow the instructions here, and after adding your SSH Key to the Github repo,
dev
branch:merge
and stay up to date with any changes to thedev
branch on GitHub:push
your localtutX/featureY
branch to GitHub to keep your colleagues aware of any changes you're making:git push origin tutX/featureY # The first time that you do this you may need to tell git where to push the branch to: git push -u origin tutX/featureY
Good Luck!
Beta Was this translation helpful? Give feedback.
All reactions