GitHub Repo for students to fork and create a pull request for the assignment of Summer School
Use the Discussions Tab on the repo to post your doubts, we'll try our best to resolve them at the earliest!!
Link to Session Recording: Recording Link
First, fork the repository in GitHub! 🍴
Your fork will have its own location, which we will call PATH_TO_YOUR_FORK
.
Next, clone the forked repository and create a branch for your folder(git branch my_folder
), which here we will call <my_folder>:
git clone $PATH_TO_YOUR_FORK
cd SummerSchool-Assignment
git checkout -b my_folder
Once you are happy with the submission, submit them for review. First, commit and push your changes:
git add .
git commit -m "Added my_folder roll number"
git push --set-upstream origin my_folder
Finally, submit a pull request.
The last git push
command prints a URL that can be copied into a browser to initiate such a pull request.
Alternatively, you can do so from the GitHub website.
Please create a folder named Name_Rollno
in which you have all the contents of whatever submission you wanna make and then make a pull request