You can use this repo so as to create your first PR for hacktoberfest.
- Create a folder with your username
- Add a hello world program in a language of your choice. Think of some creative way to print it.
- Fork this repo (button on top)
- Clone on your local machine
git clone https://github.com/your-username/my-hello-world.git
- Create a new branch
git checkout -b my-new-branch
- Create a new folder with your username
- Add your helloworld file in that folder. (Think of some creative way to print helloworld)
- Commit and push
git add .
git commit -m 'Hello World in my language'
git push origin my-new-branch
- Create a new pull request from your forked repository
- Your PR gets merged! 🎃
- Now you can help others do the same.