A team that facilitated in making Dynamic and Animated Web Pages using Javascript and JQuery
Under Development By Team Design Dynamos
Copy the issue ID from github repo issues.
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/<name_intials>-<issue-id>-ticket-title
Checkout the new branch using git checkout
Example: git checkout feature/<name_intials>-<issue-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
Repeat the same steps from Step 1 for a new task