Skip to content

Latest commit

 

History

History
35 lines (23 loc) · 751 Bytes

CONTRIBUTING.md

File metadata and controls

35 lines (23 loc) · 751 Bytes

Steps for contribution

  1. Fork the repo

  2. Clone the forked repo into your local machine

$ git clone https://github.com/your_username/hacktoberfest-java.git
  1. cd to the repo
 $ cd hacktoberfest-java 
  1. Create a branch
    $ git checkout -b mybranch
  1. Open the repo code using any IDE/text-editors

  2. There are different packages for topics such as file, oop, generics, collections and exceptions. Write a program under your desired topic.

  3. Add, Commit and Push the changes to your forked repo

$ git add .

$ git commit -m "your commit message"

$ git push origin mybranch
  1. Create a pull request from mybranch of your forked repo to main branch of this(upstream) repo.