- Then go to the repository in your own profile and click on Code as highlighted below and copy the URL which is highlighted.
- 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
- 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.