@@ -21,7 +21,7 @@ Thank you for contributing! This guide will help you understand our workflow and
2121
2222``` bash
2323# Clone repository to the recommended location
24- git clone < repo-url > ~ /.mcp-servers/devops-practices
24+ git clone https://github.com/ai-4-devops/devops-practices.git ~ /.mcp-servers/devops-practices
2525cd ~ /.mcp-servers/devops-practices
2626
2727# Install dependencies (using modern tooling - recommended)
@@ -144,8 +144,8 @@ git push origin feature/add-security-practice
144144
145145** 4. Create Merge Request**
146146
147- - Go to GitLab
148- - Create MR : ` feature/add-security-practice ` → ` develop `
147+ - Go to GitHub
148+ - Create PR : ` feature/add-security-practice ` → ` develop `
149149- Wait for CI/CD pipeline to pass
150150- Request code review
151151- Address feedback if needed
@@ -154,7 +154,7 @@ git push origin feature/add-security-practice
154154** 5. Cleanup**
155155
156156``` bash
157- # After MR is merged
157+ # After PR is merged
158158git checkout develop
159159git pull origin develop
160160
@@ -190,7 +190,7 @@ git checkout develop
190190git pull origin develop
191191git checkout -b feature/fix-template-typo
192192
193- # Fix, commit, create MR → develop
193+ # Fix, commit, create PR → develop
194194```
195195
196196** Critical Production Bugs** (hotfix):
@@ -209,7 +209,7 @@ git add mcp-server.py
209209git commit -m " Fix critical crash in MCP server template rendering"
210210git push origin hotfix/mcp-server-crash
211211
212- # Create MR → main (fast-track approval)
212+ # Create PR → main (fast-track approval)
213213# After merge to main:
214214
215215# Also merge to develop
@@ -254,7 +254,7 @@ All branches run automated checks:
254254
255255### Requesting Review
256256
257- ** Good MR Description** :
257+ ** Good PR Description** :
258258``` markdown
259259## Summary
260260Add security best practices covering secrets management, access control, and audit logging.
@@ -273,7 +273,7 @@ Add security best practices covering secrets management, access control, and aud
273273Closes #42
274274```
275275
276- ### Reviewing Others' MRs
276+ ### Reviewing Others' PRs
277277
278278** Check** :
279279- [ ] Clear, descriptive commit messages
@@ -330,9 +330,9 @@ git commit -m "Prepare v1.2.0 release"
330330git push origin release/v1.2.0
331331```
332332
333- ** 3. Create MR → main**
333+ ** 3. Create PR → main**
334334
335- - Create MR : ` release/v1.2.0 ` → ` main `
335+ - Create PR : ` release/v1.2.0 ` → ` main `
336336- Get approval from team
337337- Ensure CI/CD passes
338338- Merge to main
@@ -498,7 +498,7 @@ feature/WIP # Not clear
498498- ** [ git-practices.md] ( practices/git-practices.md ) ** - Detailed git workflows
499499
500500### Questions
501- - Open an issue on GitLab
501+ - Open an issue on GitHub
502502- Ask in team Slack channel
503503- Contact: Uttam Jaiswal (maintainer)
504504
@@ -525,5 +525,5 @@ feature/WIP # Not clear
525525---
526526
527527** Maintained By** : Uttam Jaiswal
528- ** Last Updated** : 2026-02-14
529- ** Version** : 1.2 .0
528+ ** Last Updated** : 2026-02-20
529+ ** Version** : 1.4 .0
0 commit comments