This repo is meant to contain Hello World programs in various programming languages.
git clone https://github.com/<username>/HelloWorld.git
(Before committing all files, check if all files are staged atleast. It can be checked using git status
).git checkout -b <your_name-branch_name>
git add .
. (Adds all files here)git commit -m "meaningful commit message"
. (Committed all files)git push origin <your_name-branch_name>
. To get quick approval of your pull requests, (Follow Me
)🚀