Skip to content
This repository has been archived by the owner on Dec 19, 2023. It is now read-only.

Latest commit

 

History

History
17 lines (12 loc) · 312 Bytes

CONTRIBUTING.md

File metadata and controls

17 lines (12 loc) · 312 Bytes

Adding problems

Use branches to commit freely and keep main branch clean.

$ git checkout $branchName

When you're done, squash merge to main branch according to the file structure.

$ git checkout $mainBranch
$ git merge --squash $branchName
$ git commit

Now, you can make a pull request.