Under Development By Team Brain & Bytes
Copy the ticket ID from ClickUP
Goto the repo and git status (Make sure you are on main branch)
git pull (Make sure you are up to date)
Create a new branch (replica of main) from the main branch and check it out (switch to the new branch)
Example: git branch feature/<ticket-id>-ticket-title
Checkout the new branch using git checkout
Example: git checkout feature/<ticket-id>-ticket-title
Now do your task
Push your changes (branch) to github by doing:
git add *
git commit -m "some-message"
git push
NOTE: (if upstream bracnh is not there then run the --set-upstream command given by git only once)
Got GitHub and click on "Compare & pull request"
Add Reviewers and Click on "Create pull request"
Move the ticket to "Ready for Review"
Wait for atleast 3 approvals from the team
After approvals, Please "SQUASH MERGE"
Go back to the main branch
git checkout main
Pull the latest chages by doing
git pull