- The most important: Do the
git pullbefore you start any work. - If you are working on some feature (page, component, etc.) - create your own branch:
git checkout -b <your-identifier>/<issue-id>-<branch-name>, e.g.git checkout -b borysei/123-my-branch - Commit your changes regurarly.
- After you're done, push the changes with
git push - Create merge request to
masterbranch.
This part is under construction.