You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When someone wants to implement a new feature based on the assigned issue, He/she should follow the following guideline:
Create a new branch from the dev branch
Implement the features
Add & Commit the new code changes
Push the new branch in GitHub & notify others to check & merge the code
git checkout dev
git checkout -b new-branch-name-based-on-issue
/* To Do Code */
git add .
git commit -m "COMMIT_MESSAGE"
git push origin new-branch-name-based-on-issue
** Use Git Emoji at the Beginning of the Commit Message For Visualizing the Commit Message. Ref: https://gitmoji.dev/ **
** Do Not Code in Dev & Master Branch. Do Not Create Branch from Master Branch **
** Do Not Clone / Use This Code For Business Purposes. **
** It's Not A Open Source Codebase **
The text was updated successfully, but these errors were encountered:
Collaboration Guideline
When someone wants to implement a new feature based on the assigned issue, He/she should follow the following guideline:
** Use Git Emoji at the Beginning of the Commit Message For Visualizing the Commit Message. Ref: https://gitmoji.dev/ **
** Do Not Code in Dev & Master Branch. Do Not Create Branch from Master Branch **
** Do Not Clone / Use This Code For Business Purposes. **
** It's Not A Open Source Codebase **
The text was updated successfully, but these errors were encountered: