git.lain.church game of nomic
25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12345678910111213
  1. # Managing Game Flow
  2. ## Joining the game
  3. * create an account on git.lain.church
  4. * fork the iwakuraLain/LaiNomic repo
  5. * add your player file, following the rules
  6. * commit your work to your fork
  7. * create a pull request to the iwakuraLain/LaiNomic
  8. ## Keeping your fork up to date
  9. * clone your fork to your local computer
  10. * run `git remote add upstream https://git.lain.church/iwakuraLain/LaiNomic`
  11. * in order to pull in commits, run `git pull upstream master`
  12. * you can then push the changes to your fork