Perhaps you are new in contributing to open source , or have some little knowledge. Worry not , we will take you step by step to ensure that you can contribute to Ramani Blog Project.
- Step 1: Forking the Ramani Blog Repository
After getting to the original Ramani Blog Repository , you will have to look for the forking button , that will be on you right top and click it. But also to verify that you are on the original ramani blog repository , have to check on the top left.
Refer to the diagrams below
- Step 2: Cloning your forked ramani blog repository into your machine
After successful forking the ramani repository, you have clone the repository.
Here is your checklist:
-
Require Git a version control in your machine.
-
Require an IDE for this case we will go with Visual Studio Code
-
Require a personal access token to give you access to clone your repository into your machine. How to have a github token.
NB: The Tutorial was prepared on a LINUX OS
Hence , will open the linux terminal Ctrl + Alt + T
then :
git --version
git clone <the copied url>
cd ramani-blog
code .
npm install
npm run dev
Then create a new branch to start making changes
git checkout -b <branch-name>
Now , you have already made changes , What's next ?
git add .
git commit -m "commit message"
git push origin <branch-name>