-
Notifications
You must be signed in to change notification settings - Fork 8
Branch Naming Convention
- Branch naming convention will allow us to travel through all branches with a safe and secure approach.
For any division(web, backend, android) it is planned to name as follows:
-
If division wants to implement a "feature", then the proper command should be:
git checkout -b <div_name>-feature/<feature_name>
- e.g. If backend wants to implement a feature named "login-function", it should be
git checkout -b backend-feature/login-function
- e.g. If web wants to implement a feature named "login-function", it should be
git checkout -b web-feature/login-function
- e.g. If android wants to implement a feature named "login-function", it should be
git checkout -b android-feature/login-function
-
If division wants to fix a "bug" , then the proper command should be:
git checkout -b <div_name>-bugfix/<bug_name>
- e.g. If backend wants to fix a "bug" named "login-function", it should be
git checkout -b backend-bugfix/login-function
- e.g. If web wants to fix a "bug" named "login-function", it should be
git checkout -b web-bugfix/login-function
- e.g. If android wants to fix a "bug" named "login-function", it should be
git checkout -b android-bugfix/login-function
-
<div_name> := web, backend, android
-
<bug_name> := A totally descriptive set of words to explain the bug, use 1-3 word(s)
-
<feature_name> := A totally descriptive set of words to explain the feature, use 1-3 word(s)
This approach is fail-safe to checkout an undesired branch by mistake
🏠 Home
💻 Project
-
Software Design
📜 User Manuals
☎️ Group Members
- Current Members -
- Afra Arslan
- Burak Berk Özer
- Göksu Başer
- Nursima Kaya (former communicator)
- Onur Enginer
- Yasin Kaya
- Özgürcan Öztaş (Communicator)
- Öncel Keleş
- Kaan Dura
- Muhammet Tayyip Yazici
- Ahmet Yiğit Gedik
- Nazım Berke Metin
- Former Members -
📃 Milestones
- CMPE451 -
- CMPE 352 -
📃 Meeting Notes
- CMPE 451 Meetings -
-
- Backend Meetings -
- Meeting Recordings -
- CMPE 352 Meetings -
- Meeting #1 (14.02.2020)
- Meeting #2 (20.02.2020)
- Meeting #3 (27.02.2020)
- Meeting #4 (05.03.2020)
- Customer Meeting #1 (05.03.2020)
- Meeting #5 (12.03.2020)
- Meeting #6 (09.04.2020)
- Meeting #7 (16.04.2020)
- Meeting #8 (24.04.2020)
- Meeting #9 (30.04.2020)
- Meeting #10 (07.05.2020)
- CMPE 352 Project Plan -
🔍 Research