This repository contains a list of members participating in Hacktoberfest Guwahati.
Note:
- PRs to this repository will not be counted towards your 4PRs for Hacktoberfest, this is just for learning.
- If you have never used Git or GitHub, it is highly recommended to read the articles mentioned in the Reading Material section.
Supporting video for the following steps: https://youtu.be/aR4KPfCEtrQ
-
Fork this repository
-
Clone your repository locally
git clone https://github.com/<username>/learnPR
-
Create a new branch
git checkout -b add-name-<username> # For example, git checkout -b add-name-einstein
-
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. See files undernames/
for an example. (The three spaces represented by the dot.
here)- [<username>](https://github.com/username) ...- Blog Link ...- Twitter Link ...- LinkedIn Link ...- [OPTIONAL] Dribble/CodePen/Stack Overflow or any other web presence
-
Add the file to the staging area
git add names/<username>.md
-
Commit your file
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
git config --global user.email "[email protected]" git config --global user.name "Your Name"
-
Push the branch you created to GitHub
git push origin add-name-<username>
-
Check the changes are reflected in your repository -
https://github.com/<username>/learnPR
-
Create a Pull Request on the original repo(https://github.com/buildandtell/learnPR) 🚀
-
Do Star ⭐ this repo to show some love. 🤩
- 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