Skip to content

Commit

Permalink
Add names by creating file
Browse files Browse the repository at this point in the history
Signed-off-by: Hrishikesh Barman <[email protected]>
  • Loading branch information
geekodour committed Oct 6, 2019
1 parent 9f0c71c commit bc91370
Show file tree
Hide file tree
Showing 4 changed files with 72 additions and 76 deletions.
68 changes: 0 additions & 68 deletions INSTRUCTIONS.md

This file was deleted.

74 changes: 66 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,70 @@
# Learn PR
This repository contains a list of members participating in Hacktoberfest Guwahati.

Please read the [instructions](INSTRUCTIONS.md)
## Instructions

## Hacktoberfest Guwahati Members
**Note:** _If you have never used Git or GitHub, it is highly recommended to read the articles mentioned in the **Reading Material** section._

- [mbtamuli](https://github.com/mbtamuli)
- https://mriyam.dev/
- https://twitter.com/mbtamuli
- https://www.linkedin.com/in/mbtamuli
- [joinalahmed](https://github.com/joinalahmed)
- https://www.linkedin.com/in/joinalahmed
1. Fork this repository
2. Clone your repository locally
```sh
git clone https://github.com/<username>/learnPR
```
3. Create a new branch
```sh
git checkout -b add-name-<username>
# For example,
git checkout -b add-name-einstein
```
4. Create a new file inside the directory `names/` with the filename: `<username>.md` and add your profile links from various sites in the `<username.md>` file.
```md
- [<username>](https://github.com/username)
- Blog Link
- Twitter Link
- LinkedIn Link
- [OPTIONAL] Dribble/CodePen/Stack Overflow or any other web presence
```
5. Add the file to the staging area
```sh
git add names/<username>.md
```
6. Commit your file
```sh
git commit -m "Add name - <username>"
```

If you see a warning like this, you most probably have not configured git correctly. 😞
```
*** Please tell me who you are.
Run
git config --global user.email "[email protected]"
git config --global user.name "Your Name"
to set your account's default identity.
```
If you see this warning, you're suggested to go through the **Reading Material**, if you have not already, as this step is given in Part 1! Anyways, as given in the warning, you need to run the two commands
```sh
git config --global user.email "[email protected]"
git config --global user.name "Your Name"
```


7. Push the branch you created to GitHub
```sh
git push origin add-name-<username>
```
7. Check the changes are reflected in your repository - `https://github.com/<username>/learnPR`
8. Create a Pull Request on the original repo([https://github.com/buildandtell/learnPR](https://github.com/buildandtell/learnPR)) 🚀
9. Do **Star** ⭐ this repo to show some love. 🤩


## Reading Material

Part 1 - https://thenewstack.io/tutorial-git-for-absolutely-everyone/
Part 2 - https://thenewstack.io/git-with-the-program-getting-started-with-github/
Part 3 - https://thenewstack.io/getting-legit-with-git-and-github-cloning-and-forking/
Part 4 - https://thenewstack.io/getting-legit-with-git-and-github-your-first-pull-request/

Cheat Sheet - https://education.github.com/git-cheat-sheet-education.pdf
2 changes: 2 additions & 0 deletions names/joinalahmed.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
- [joinalahmed](https://github.com/joinalahmed)
- https://www.linkedin.com/in/joinalahmed
4 changes: 4 additions & 0 deletions names/mbtamuli.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
- [mbtamuli](https://github.com/mbtamuli)
- https://mriyam.dev/
- https://twitter.com/mbtamuli
- https://www.linkedin.com/in/mbtamuli

0 comments on commit bc91370

Please sign in to comment.