/GitHubWorkshop-Task1

Git and GitHub Workshop conducted SE DBIT students

Primary LanguageC

GithubWorkshop - Task 1

Cloning a repository and Creating a pull request for proposing your changes.

  1. Fork this repository, into your github account using the fork button present on top right section of this repository
task11
  1. You will have a new repository something similar to this under your repositories, as shown in the image below
task12
  1. Copy the link from here and clone it into your computer using git bash and git clone command
git clone *github repo's url which you forked from this repository*
  1. Once thats done, you can add one or two of your own dsa code to the repositery :
  • Like adding a c file of stack or queue etc.
  1. Commit the changes and push it back to your repo using:
git push origin main
  1. You will see a message like this on your repo once you push the code to your repository
task13
  1. Click on it and you'll see an option to make a pull request
task14
  1. Create a push request, and you can confirm that you've successfully sent a pull request if you see your name under pull requests section of this repository
task15
  1. And you're Done!!

Link for task 2