forked from buildandtell/learnPR
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Hrishikesh Barman <[email protected]>
- Loading branch information
Showing
4 changed files
with
72 additions
and
76 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |