mirror of
https://github.com/wahyd4/gitlabhq.git
synced 2026-08-19 17:46:07 +10:00
Files moved: * Workflow * help/ssh * help/webhooks * help/system_hooks * help/public_access * help/permissions
27 lines
467 B
Markdown
27 lines
467 B
Markdown
1. Clone project
|
|
|
|
```bash
|
|
git clone git@example.com:project-name.git
|
|
```
|
|
2. Create branch with your feature
|
|
|
|
```bash
|
|
git checkout -b $feature_name
|
|
```
|
|
|
|
3. Write code. Comit changes
|
|
|
|
```bash
|
|
git commit -am "My feature is ready"
|
|
```
|
|
|
|
4. Push your branch to GitLab
|
|
|
|
```bash
|
|
git push origin $feature_name
|
|
```
|
|
|
|
5. Review your code on Commits page
|
|
6. Create a merge request
|
|
7. Your team lead will review the code & merge it to the main branch
|