Skip to content

Latest commit

 

History

History
51 lines (30 loc) · 1.77 KB

CONTRIBUTION.md

File metadata and controls

51 lines (30 loc) · 1.77 KB

Contribution Guide

screenshot-github com-2022 09 29-16_39_18

  • Then go to the repository in your own profile and click on Code as highlighted below and copy the URL which is highlighted.

screenshot-github com-2022 09 29-16_40_07

screenshot-github com-2022 09 29-16_40_33

  • Then on your system go the desired directory and create a duplicate by using the command
git clone https://github.com/Spectrum-CETB/Spectober_Fest
  • Then the next step is to open your desired Code Editor and open up the terminal and switch to your branch
git checkout -b <new-branch name>
  • To switch back to the original main branch type on the following code
git checkout main
  • Go back to your branch and then make the changes and then stage up the changes and commit the changes and then push the changes to your own branch
# Stage up the Changes
git add .

# Commit the changes
git commit -m "Commit message as your choice"

# Push to your own branch
git push origin <Own branch>
  • Compare the changes and put on the pull request as shown below.

screenshot-github com-2022 09 29-16_51_44

screenshot-github com-2022 09 29-16_52_44