-
Notifications
You must be signed in to change notification settings - Fork 39
Open
Labels
Description
Hope you read the plot. We want to have the names of all those who are ready to help the DehlaPakad team.
In this challenge, you will learn the most basic git workflow i.e forking a repository, making a clone, making changes and making a pull request. Here are the tasks
- Fork this repo
- Clone the forked repo using
git clone https://github.com/{your-github-username}/git_hero_2021 - Make a new branch with the name
challenge1usinggit checkout -b challenge1 - Edit the
participants.mdfile and add yourself to it likeName (Roll No)as an exampleAnmol (b19069). - Stage the changes using
git add participants.md - Commit the changes using
git commit -m "{your commit message}" - Push the changes using
git push origin challenge1 - Make a pull request from github. In the pull request description, write 'Solved Challenge 1 #1'
TIP : Write proper commit messages for more marks.
Reactions are currently unavailable