Hacktoberfest2021 Repo for Beginners
- Follow the Contribution guidelines** |
Repo Maintainers |
How You Can Contribute to this repoFollow below steps for contribution.
Name of File: js-concept-name_yourusername.jsexample: hello_world_Aman22sharma.js
example: Variables_shruti49.js Format* JavaScript-LearnName of File: JS-concept-name_yourusername.js// AUTHOR: Your Name
// JavaScript Concept: JS Concept that you want to add (ex: variable,datatypes etc)
// GITHUB: your github profile link
//Add your JavaScript concept below |
Aman Sharma
|
- You can not add the same concepts again so, make sure the concepts are unique.
Make a Pull Request for your changes and wait to be merged.
How to Begin
0. ⭐⭐⭐ Star this repository ⭐⭐⭐
1. Fork this repository
2. Clone this repo to your local environment
git clone https://github.com/your-username/Hacktoberfest2021_beginners.git
cd Hacktoberfest2021_beginners
3. Set your streams (For sync your clone with the original repo)
git remote add upstream https://github.com/shruti49/Hacktoberfest2021_beginners.git
git pull upstream master
JavaScript-Learn
directories
4. Make your addition to the JavaScript concepts in 5. Create a branch
git checkout -b your-branch-name
6. Pull from the upstream again (This is to ensure we still have the latest code)
git pull upstream master
7. Commit and Push your changes
git add .
git commit -m "commit message"
git push origin your-branch-name
- Create a new Pull Request from your forked repository, click the
New Pull Request
button located at the top of your repository - Wait for you PR to be reviewed and merge approval
Format
* JavaScript-Learn
Name of File: JS-concept-name_yourusername.js
// AUTHOR: Your Name
// JavaScript Concept: your javascript concept that you want to add (ex: variable,datatypes etc)
// GITHUB: your github profile link
//Add your JavaScript concept below