GitHub Workflow
Setting Up Your Development Environment
# Visit https://github.com/mokita-j/pns # Click the "Fork" button in the top rightgit clone https://github.com/YOUR-USERNAME/pns.git cd pnsgit remote add upstream https://github.com/mokita-j/pns.git
Making Changes
git checkout -b feature/your-feature-name # or git checkout -b fix/your-bug-fixgit fetch upstream git rebase upstream/maingit add . git commit -m "feat: description of your changes"
Submitting Pull Requests
Last updated