Skip to content

Latest commit

 

History

History
26 lines (25 loc) · 1 KB

Contributing code.md

File metadata and controls

26 lines (25 loc) · 1 KB

Contributing code.

First of all, thanks for your interest in contributing!

Hey! If you are new to git/github,please check a few tutorials. git/github
The basic workflow for contributing is:

  1. Fork the repository
  2. Clone the repository to create a local copy on your computer:
   git clone git@github.com:${user}/folium.git
   cd folium
  1. Create a branch for your changes

    git checkout -b name-of-your-branch
    
  2. Make changes to your local copy of the webmap repository

  3. Commit those changes

    git add file1 file2 file3
    git commit -m 'a descriptive commit message'
    
  4. Push your updated branch to your fork

    git push origin name-of-your-branch
    
  5. Open a pull request to the Kushal997-das/webmap