Skip to content

Latest commit

 

History

History
68 lines (38 loc) · 1.48 KB

File metadata and controls

68 lines (38 loc) · 1.48 KB
image

Synopsis

Common tasks for various programming languages.

Installation

Download each folder and open the file.

Contributing to this repo.

First step is to fork the repo.

This creates your own copy of the repository.

https://help.github.com/articles/fork-a-repo/

Clone your forked copy to your local computer

https://help.github.com/articles/cloning-a-repository/

Create a new feature branch:

https://github.com/Kunena/Kunena-Forum/wiki/Create-a-new-branch-with-git-and-manage-branches

Make changes you want to add

Make any changes on your local copy of the repo and save your changes.

Add your files to git and make a commit

Use this command to add all files you changed, created, or saved.

git add .

Make a commit:

Example:

git commit -m "My fancy new changes"

Push your changes to your forked copy of the repo

git push

Now your changes are pushed to your forked copy of the respo.

Make a pull request.

https://help.github.com/articles/about-pull-requests/

Create a Pull request

Go to your github account and look for message that asks you if you would like to create a new pull request.

Be sure your newly created branch is selected.

Known issues

Windows has an issue with long file names, use this command to get around it when checking out this repo: git config --system core.longpaths true