From 87562df7dedc7b24af5e781654168ef3c74d4919 Mon Sep 17 00:00:00 2001 From: B L A C K F U R Y <93466451+div-hacks@users.noreply.github.com> Date: Sun, 31 Oct 2021 15:18:39 +0530 Subject: [PATCH] Update README.md --- README.md | 81 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 81 insertions(+) diff --git a/README.md b/README.md index 9abcd25..f893dd7 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,83 @@ # Be Creative this Hacktoberfest 2021 Lets be creative this hacktober fest. Get started with contributing to open source. + + + +![-----------------------------------------------------](https://raw.githubusercontent.com/andreasbm/readme/master/assets/lines/rainbow.png) + +#

🚀 Web-Ideas 🚀

+ +![-----------------------------------------------------](https://raw.githubusercontent.com/andreasbm/readme/master/assets/lines/rainbow.png) + + + + +![-----------------------------------------------------](https://raw.githubusercontent.com/andreasbm/readme/master/assets/lines/rainbow.png) + + PRs Welcome GitHub pull requests GitHub issues + + +# How Can I Contribute? + +Don't know how to start of open source and Contribute to our Open Source Project ? Welcome to the world of hacking! + +The steps to follow to contribute to any projects: + +1. #### If you don't have git on your machine, [install it](https://help.github.com/articles/set-up-git/). + +2. ## Fork this repository + + Fork this repository by clicking on the fork button on the top of this page. + This will create a copy of this repository in your account. + +3. ## Clone the repository + + Now clone the forked repository to your machine. Go to your GitHub account, open the forked repository, click on the code button and then click the _copy to clipboard_ icon. + + Open a terminal and run the following git command: + + ``` + git clone "url you just copied" + ``` + +4. ### Add a upstream link to main branch in your cloned repo + ``` + git remote add upstream + ``` +5. ### Keep your cloned repo upto date by pulling from upstream + This will also avoid any merge conflicts while committing new changes + ``` + git pull upstream main + ``` +6. ### Create your feature branch + Always create new branch + ``` + git checkout -b + ``` +7. ### Track your changes + ``` + git add . + ``` +8. ### Check for your changes. + ``` + git status + ``` +9. ### Commit all the changes + Write commit message as "Small Message" + ``` + git commit -m "Write a meaningfull but small commit message" + ``` +10. ### Push the changes for review + ``` + git push origin + ``` +11. ### Create a PR on Github. + Just hit the create a pull request button, you must write a PR message to clarify why and what are you contributing +
+ + +# ❓ What I have to do? + +You can add any codes in any language by creating its respective folder (if already not available). + +---