Skip to content

This repository is about java questions and it is contributing hacktoberfest

Notifications You must be signed in to change notification settings

anuj151104/java_hacktoberfest

 
 

Repository files navigation

Java HacktoberFest


GitHub forks GitHub stars GitHub issues GitHub pull requests GitHub contributors

What is Hacktoberfest? 🎇

Hacktoberfest is a month long celebration of open source software held in the month of October to get people involved in open-source. This year's edition is presented by DigitalOcean.


Rules

To get a T-shirt, you must make four pull requests between October 1–31 in any timezone. Pull requests can be to any public repo on GitHub, not just the ones we’ve highlighted. The pull request must contain commits you made yourself. Make a pull request to only those repositories which have Hacktoberfest tag on it.


Contribution

Click here to add an entry of you for HacktoberFest.

How to Contribute Open Source Projects

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.

  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 <original repository>
    
  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 <feature-name>
    
  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 <branch-name>
    
  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


About

This repository is about java questions and it is contributing hacktoberfest

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Java 100.0%