-
Notifications
You must be signed in to change notification settings - Fork 30
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Task 2: Make your first PR #20
Labels
Comments
Merged
Closed
Merged
Merged
Merged
Merged
Merged
Merged
https://user-images.githubusercontent.com/48357016/79215209-e90f1600-7e68-11ea-8701-1d04bdd441bc.png |
Hi @mishra-aanchal Can you open another issue for this? I will get back to you there. Lets not discuss it here in case the conversation gets longer. |
Merged
Merged
Merged
Merged
Merged
Merged
Merged
Merged
Merged
Merged
Merged
Closed
Merged
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Markdown is a lightweight markup language that you can use to format elements to plaintext text documents. The README file you see at the beginning of this repository is also a markdown file. In this Task 2 of The Open-Source Challenge, you will play around with creating a markdown file and making a pull request. Make sure you completed the task 1 before proceeding further:
So the task is as follows:
Open-Source-Challenge
using thecd
command and rungit status
. The output should be something like this:On branch master Your branch is up-to-date with 'origin/master'. nothing to commit, working directory clean
git checkout -b <your GitHub username>-task2
For example:
git checkout -b john12-task2
Now, the output of
git status
should be:For Linux/Mac:
touch participants/<your-GitHub-username>.md
For Windows:
echo $null >> participants/<your-GitHub-username>.md
For example:
touch participants/john12.md
These commands are used to create empty files. We created a
john12.md
file inside theparticipants
folder of the project.If you get a
No such file or directory
error in the above command, run these commands:You will have to type your GitHub username and password for the last command.
Open the project in your favorite text editor. To open the project in VScode, run
code .
inside the project directory in the terminal.In your text editor, go to the file you just created in the previous step. That file would be inside the
participants
folder. And add the following details in the file you created (in my case it's john12.md) and save it:Open-Source-Challenge
project directory, run:In my case, the last command would be:
Complete the procedure by entering GitHub username and password.
New branch pushed
inside a yellow colored box. Next to it would be aCreate Pull Request
button. Use that to create a Pull Request.Done! We will see your PR as a submission.
Remember that any technical doubts will be answered only through the issues created in the repository. This is an important rule that you must follow.
The text was updated successfully, but these errors were encountered: