Say Hello to Reactjs is an initiative that aims to help people upskill in React and Kickstart Their Journey as Frontend Devs I here follow an mechanism of learn by practising and making lots of projects and codepens and taking one on one doubts.
- Basic Understanding of HTML and CSS 💻
- Some knowledge oj any programming language preferably JavaScript 🐤
- A zeal to Learn Reactjs
-
Day1
-
Day2
-
Day3
-
Day4
-
Day5
-
Day6
-
Day7
-
Fork this repo: You'll see a Fork button on the top right against the name of this repository. This creates an identical copy of this repository and adds it to your repositories.
-
Open the forked repository: Navigate to your profile find the repository
github.com/<your_github_username>/Say-Hello-to-React-js
-
Clone the repository: Clone the repository by copying the clone link (find it against the name of the repository on the right) and using it as mentioned in below CLI command
git clone https://github.com/<your-username>/Say-Hello-to-React-js
-
Move to the directory: Move to the directory by using the below CLI command
cd Say-Hello-to-React-js
-
Update the changes to repo: Add your Day wise learning. The Learning Notes must be in a specified format. Your code should be inside the Respective Day wise folder. The file should have a specific naming convention. The learning notes file name should be
<your name>.md
.- Root Folder
<Folder Name> (For example: Day1)
<Your File Name> (For Example: smile.md)
-
To stage the file(s) , use the following CLI command
git add .
-
Commit the file(s): For locally cloned repository, use the following CLI command to commit your file(s).
git commit -m "<your-message>"
For GitHub web, simply add the commit message and description at the bottom of the page to add the new file.(Please use an appropriate commit message and follow this git commit message guidelines)
-
Push the file(s): For locally cloned repository, use the following CLI command to push your file(s).
git push -u origin main
. -
Create pull request: Please create a Pull Request(PR) from GitHub to the
main
branch. If you are new to creating pull requests, watch the video for reference. Your First GitHub Pull Request (in 10 Mins)
For GitHub web, simply move over to the original repository and click on New Pull Request and compare forked repositories. Provide appropriate description and VOILA!
If there are any changes suggested by the reviewer, do make the same and follow to steps to update:
- stage the changes, using command:
git add .
. - commit the changes, using command:
git commit -m "Commit Message"
. - rebase the branch, using command:
git rebase master
. - squash the commits, using command:
git stash
. - push the changes, using command:
git push -u origin main
.
The PR with correct and optimised solution, which satisfies the deadline criteria, will be merged soon😄
if (needHelp === true) {
var emailId = "guptamiley3012@gmail.com";
// email is the best way to reach out to me.
sendEmail(emailId);
}
Glad to see you here! Show some love by starring this repo.