Skip to content

Latest commit

 

History

History
51 lines (31 loc) · 1.23 KB

README.md

File metadata and controls

51 lines (31 loc) · 1.23 KB

GitHub Demo

This repository is created to show GitHub contribution flow. It contains a program factorial.cpp that calculates factorial of a program.

Issues

View open issues in Issues tab, and contribute to provide a fix for them.

Contribution

To contribute to this repository, follow the steps:

  1. Fork this repository, using the fork button.

    Fork creates a copy of the repository under your profile, that will contain your version of the project. You can make any changes to the repository.

    Fork Button
  2. Clone your forked repository

    This step wll create a local copy of the repository in your system.

    git clone <repository-url>
  3. Add and commit your changes

    Make your changes and save those changes by making a commit.

    git add <filenames>
    git commit -m "commit description"
  4. Push your local changes

    Your commit will be pushed, and will reflect in your GitHub repository.

    git push
  5. Create a Pull Request Submit your pull request containg changes using GitHub.

What Next

Explore open-source project and contribute to them, or create your own one.