Hacktoberfest has came with it's 10 season to promote Open-Source Contribution. After Learning how to contribute using this repo, go to our real world project Idea-Arca. It's also up for Hacktoberfest.
These are the changes you can make. Steps to contribute to this project:
Hello World code in any language in Database/ directory./Database/ and write the hello world code in that file only. The file can be named anything.here first 3 lines are commented out. The rest is Hello_World code # LANG: Python
# AUTHOR: Kumar Ashish Ranjan
# GITHUB: https://github.com/dev-AshishRanjan
print("Hello World!")CONTRIBUTORS.md file### Name: Kumar Ashish Ranjan
- Place: Bihar, India
- Academic: CSE Undergraduate at college_name.
- GitHub: [dev-AshishRanjan](https://github.com/dev-AshishRanjan)git clone https://github.com/dev-AshishRanjan/hacktoberfest2023.git
git checkout -b my-new-branchChanges : Create a new branch and commit your changes on that branch. Follow the How to contribute
ADD and COMMIT
git add .git commit -m "Relevant message"git push origin my-new-branchIf you are new to git and github, I will suggest you first go through this :
- YT video (Recommended) : https://www.youtube.com/watch?v=RGOj5yH7evk&pp=ygUOZ2l0IGFuZCBnaXRodWI%3D
- Docs : https://hacktoberfest.com/participation/#beginner-resources
If you are new to open-source, then you can go through : https://www.youtube.com/watch?v=yzeVMecydCE
An easy way to avoid conflicts is to add an 'upstream' for your git repo, as other PR's may be merged while you're working on your branch/fork.
git remote add upstream https://github.com/dev-AshishRanjan/hacktoberfest2023
You can verify that the new remote has been added by typing
git remote -v
To pull any new changes from your parent repo simply run
git merge upstream/dev