https://github.com/ndevu12/sefaceofafrica-tic-tac-toe
Tic tac toe Challenge
https://github.com/ndevu12/sefaceofafrica-tic-tac-toe
Last synced: 3 months ago
JSON representation
Tic tac toe Challenge
- Host: GitHub
- URL: https://github.com/ndevu12/sefaceofafrica-tic-tac-toe
- Owner: Ndevu12
- Created: 2024-08-25T17:48:31.000Z (9 months ago)
- Default Branch: develop
- Last Pushed: 2024-08-27T18:52:47.000Z (9 months ago)
- Last Synced: 2025-01-08T04:51:16.566Z (4 months ago)
- Language: JavaScript
- Size: 14.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# SEFaceOfAfrica-tic-tac-toe
Tic tac toe Challenge## How to contribute
clone repo
```bash
git clone https://github.com/Ndevu12/SEFaceOfAfrica-tic-tac-toe.git
cd SEFaceOfAfrica-tic-tac-toe
```
### Start the serverRun
```javascript
yarn install
yarn dev
```For Production run
```javascript
yarn start
```### Push changes
Create a new branch and Pull request for every new changes and wait for pull request approvals
Create new branch
```javascript
git checkout -b
```Commit changes
```javascript
git add .
git commit -m <'new commit message'>
git push origin
```### Avoid many commits
To avoid many commit message use the following for committing changes on the existing Pull Request or branch.
```javascript
git add .
git commit --amend --no-edit
git push origin -f
```