HacktoberFest Hello World in every other language ever. Just fork it and add a 'Hello World' program to contribute for hacktober fest and send a Pull Request!!
HackSquad allows contributors to contribute code as a squad instead of a single contributor. Engage the community in a friendly competition over the month of October.
Hacktoberfest is an annual event that encourages contributions to open-source projects on platforms like GitHub. It takes place throughout the month of October. The main goal of Hacktoberfest is to promote open-source collaboration and community participation by rewarding contributors with limited-edition swag, such as t-shirts and stickers, for making a certain number of valid pull requests to open-source repositories.
https://hacktoberfest.digitalocean.com/
You can get your own fork/copy of Hacktoberfest by using the Fork button or clicking this.
Once you have forked the repo, add your progam in the language folder in main branch, if there is no language folder, make one, then add into it. You can take a look to the Programming Language List in Wikipedia to create a new one for Hacktoberfest!
Once you have completed these steps, you are ready to start contributing
by checking our Help Wanted
issues and creating pull requests.
If you liked working on this repo, please share this repo as much as you can and star this repo to help as many people in opensource as you can.
To make your own local copy of the repository you would like to contribute to, letâs first open up a terminal window.
Weâll use the git clone
command along with the URL that points to your fork of the repository.
This URL will be similar to the URL above, except now it will end with .git
. In the cloud_haiku example above, the URL will look like this:
https://github.com/your-username/Hacktoberfest.git
You can alternatively copy the URL by using the green âClone or downloadâ button from your repository page that you just forked from the original repository page. Once you click the button, youâll be able to copy the URL by clicking the binder button next to the URL:
Once we have the URL, weâre ready to clone the repository. To do this, weâll combine the git clone
command with the repository URL from the command line in a terminal window:
git clone (https://github.com/your-username/Code-Contribution.git)
To create your branch, from your terminal window, change your directory so that you are working in the directory of the repository. Be sure to use the actual name of the repository (i.e. Hacktoberfest) to change into that directory.
cd Code-Contribution
Now, weâll create our new branch with the git branch
command. Make sure you name it descriptively so that others working on the project understand what you are working on.
git branch new-branch
Now that our new branch is created, we can switch to make sure that we are working on that branch by using the git checkout command:
git checkout new-branch
Once you enter the git checkout command, you will receive the following output:
Output:
Switched to branch 'new-branch'
At this point, you can now modify existing files or add new files to the project on your own branch.
Once you have modified existing files or added new files to the project, you can add them to your local repository, which you can do with the git add
command. Letâs add the -A
flag to add all changes that we have made:
git add -A
or
git add .
Next, weâll want to record the changes that we made to the repository with the git commit command.
The commit message is an important aspect of your code contribution; it helps the other contributors fully understand the change you have made, why you made it, and how significant it is. Additionally, commit messages provide a historical record of the changes for the project at large, helping future contributors along the way.
If you have a very short message, you can record that with the -m
flag and the message in quotes:
Example:
git commit -m "Updated Readme.md"
At this point you can use the git push
command to push the changes to the current branch of your forked repository:
Example:
git push --set-upstream origin new-branch
While you are working on a project alongside other contributors, it is important for you to keep your local repository up-to-date with the project as you donât want to make a pull request for code that will cause conflicts. To keep your local copy of the code base updated, youâll need to sync changes.
Weâll first go over configuring a remote for the fork, then syncing the fork.
Next, youâll have to specify a new remote upstream repository for us to sync with the fork. This will be the original repository that you forked from. Youâll have to do this with the git remote add
command.
git remote add upstream https://github.com/your-username/Code-Contribution.git
In this example, upstream
is the shortname we have supplied for the remote repository since in terms of Git, âupstreamâ refers to the repository that you cloned from. If you want to add a remote pointer to the repository of a collaborator, you may want to provide that collaboratorâs username or a shortened nickname for the shortname.
Once you have configured a remote that references the upstream and original repository on GitHub, you are ready to sync your fork of the repository to keep it up-to-date.
To sync your fork, from the directory of your local repository in a terminal window, youâll have to use the git fetch
command to fetch the branches along with their respective commits from the upstream repository. Since you used the shortname âupstreamâ to refer to the upstream repository, youâll have to pass that to the command:
git fetch upstream
Switch to the local master branch of our repository:
git checkout master
Youâll now have to merge any changes that were made in the original repositoryâs master branch, that you will access through your local upstream/master branch, with your local master branch:
git merge upstream/master
At this point, you are ready to make a pull request to the original repository.
You should navigate to your forked repository, and press the âNew pull requestâ button on your left-hand side of the page.
Every pull request is accepted and merged. So hurry up and contribute to this repo.
The purpose of this repository is to provide a platform for developers to contribute to open-source projects during Hacktoberfest and Hacksquad 2024. By adding a 'Hello World' program in any programming language, contributors can participate in these events, learn about different programming languages, and collaborate with the community.
-
Fork the repository to your own GitHub account.
-
Clone your forked repository to your local machine:
git clone https://github.com/your-username/Code-Contribution.git
-
Create a new branch for your contribution:
git checkout -b feature/your-feature-name
-
Add your 'Hello World' program in the appropriate language directory. If the directory does not exist, create one.
-
Commit your changes with a descriptive commit message:
git commit -m "Add Hello World in [Language]"
-
Push your branch to your forked repository:
git push origin feature/your-feature-name
-
Open a Pull Request to the main branch of this repository with a descriptive title and summary of your changes.
-
Wait for review and approval. Once your pull request is approved, it will be merged into the main branch.
Here are some examples of 'Hello World' programs in different programming languages:
print("Hello, World!")
console.log("Hello, World!");
#include <iostream>
int main() {
std::cout << "Hello, World!" << std::endl;
return 0;
}
Feel free to explore the repository and see more examples in various languages. Happy contributing!
This repository uses the Jekyll theme minima
. To run the site locally, follow these steps:
-
Install Jekyll: Make sure you have Ruby and Bundler installed. Then install Jekyll with the following command:
gem install jekyll bundler
-
Clone the repository: If you haven't already, clone the repository to your local machine:
git clone https://github.com/your-username/Code-Contribution.git
-
Navigate to the repository directory:
cd Code-Contribution
-
Install dependencies: Install the required dependencies using Bundler:
bundle install
-
Run the Jekyll site: Use the following command to build and serve the site locally:
bundle exec jekyll serve
-
Open your browser: Open your web browser and go to
http://localhost:4000
to see the site.
For more information on Jekyll, visit the Jekyll documentation.