Clone project:
git clone git@example.com:project-name.gitCreate branch with your feature:
git checkout -b $feature_nameWrite code. Commit changes:
git commit -am "My feature is ready"Push your branch to GitSwarm:
git push origin $feature_nameReview your code on commits page.
Create a merge request.
Your team lead will review the code & merge it to the main branch.
Note: For performance reasons, it is better to clone from a repo via SSH instead of HTTP(S). GitSwarm EE maintains a limited pool of web worker processes, and each HTTP(S) push/pull/fetch operation ties up a worker process until completion.