This is a simple "Hello World" program in [any programming language]. You can use this Repo as a starting point for your "Hello World" project in any language of your choice.
The "Hello World" program is a classic beginner's project that serves as a simple introduction to a programming language. It is often the first program a developer writes when learning a new language.
To get started with this "Hello World" program, follow these steps:
-
Create a folder at you desired location (usually at your desktop).
-
Open Git Bash Here.
-
Create a Git Repository. Run the command
git init
-
Fork the repository.
-
Clone your forked repository of project.
git clone https://github.com/<your-github-username>/Hello-World.git
- Navigate to the project directory.
cd Hello-World
- Add a reference(remote) to the original repository.
git remote add upstream https://github.com/Developers-Adgitm/Hello-World.git
- Check the remotes for this repository.
git remote -v
- Always take a pull from the upstream repository to your main branch to keep it updated as per the main repository.
git pull upstream main
- Create a new branch.
git checkout -b <your_branch_name>
-
Perform your desired changes to the code base.
-
Check your changes
git status
git diff
- Stage your changes
git add . <\files_that_you made_changes>
- Commit your changes.
git commit -m "<your_commit_message>"
- Push the committed changes in your feature branch to your remote repository.
git push -u origin <your_branch_name>
-
To create a Pull Request, click on
compare and pull requests
. -
Add an appropriate title and description to your PR explaining your changes.
-
Click on
create pull request
.
Congratulations🎉, you have made a PR to Hello-World Project . Wait for your submission to be accepted and your PR to be merged by a maintainer.
Replace [programming language]
with the actual programming language you are using. Here's an example "Hello World" program in Python:
File name will be Hello-World.py
print("Hello, World!")
If you'd like to contribute to this project, you can:
- Fork the repository
- Make your changes
- Create a pull request
Please make sure to follow the Contributing Guidelines when submitting your contributions.
This project is licensed under the MIT License, which means you are free to use, modify, and distribute it for personal or commercial purposes.