Skip to content

dscpvgcoet/hacktoberfest2021-data-visualizations

Repository files navigation

Hacktoberfest2021-data-visualizations

Hacktoberfest Banner

What you can do with this repo ?

You can add folder named as visualization-language (if not already present) and start creating data visualizations in it. (e.g. histogram-python,chart-js etc)

Make sure

  1. Visualization(s) that you want to contribute are unique against already existing ones, in terms of visualization, language and the package used.
  2. Data referred in the contribution doesn't create issue for anyone.
  3. Add snapshot of the visualization.

Steps to contribute

  1. Star this repository.
  2. Click on the fork button on the top right corner of this page.
  3. Now go to http://github.com/{your_username}/hacktoberfest2021-data-visualizations where you can see your own fork of this repo.
  4. Open the terminal and clone your fork using
git clone http://github.com/{your_username}/hacktoberfest2021-data-visualizations
  1. Before you make any changes, keep your fork in sync to avoid merge conflicts:

    git remote add upstream https://github.com/dscpvgcoet/hacktoberfest2021-data-visualizations.git
    git pull upstream main

    If you run into a merge conflict, you have to resolve the conflict. There are a lot of guides online, or you can try this one by opensource.com.

  2. Now go inside the directory "hacktoberfest2021-data-visualizations" and checkout to a new branch with name of your choice

git checkout -b {branch_name}
  1. Start adding/modifying your code.
  2. Add the files you want to commit to the staging area.
git add {folder_name/file_name}
  1. Commit the changes
git commit -m '{Your commit message}'
  1. Push to GitHub.
git push origin {branch_name}
  1. Go to http://github.com/{your_username}/hacktoberfest2021-data-visualizations , on the left there is a button to change your branch. Click on it and select {branch_name}.
  2. Now you will be able see a button named "Pull request". Click on it.
  3. Add appropriate message and click the "Create Pull Request" button.

Resolving errors

  1. If you get a message like "This branch is X commits ahead, Y commits behind" then visit this thread and follow the steps. Also don't forget to push and pull from proper branches (observe that we have a main branch instead of master).
  2. In case of merge conflict visit this thread.