Skip to content

Latest commit

 

History

History
41 lines (25 loc) · 1.26 KB

File metadata and controls

41 lines (25 loc) · 1.26 KB

Contributing Guidelines

Your ideas, design changes, code cleaning, or real heavy code changes or any other help all are always welcome. The more is contribution the better it gets.

1. 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.

2. 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"

where "url you just copied" (without the quotation marks) is the url to this repository (your fork of this project). See the previous steps to obtain the url.

3. Change the Branch

Change to the repository directory on your computer (if you are not already there):

cd storydeck

Now to perform any change(s) checkout the develop branch by git checkout command:

git checkout develop

4. Perform your changes

Do your valuable changes into codebase and save it then push the changed code to your

origin repository.

5. Make Pull Request to Team-Storydeck/< storydeck-repo >