Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/levidavidmurray/grant-game
20 Second Game
https://github.com/levidavidmurray/grant-game
Last synced: about 2 months ago
JSON representation
20 Second Game
- Host: GitHub
- URL: https://github.com/levidavidmurray/grant-game
- Owner: levidavidmurray
- Created: 2022-11-24T08:32:57.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2022-11-28T11:35:05.000Z (about 2 years ago)
- Last Synced: 2023-03-05T21:21:54.936Z (almost 2 years ago)
- Language: GDScript
- Size: 4.47 MB
- Stars: 1
- Watchers: 1
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Grant Game
20 Second Game
## Contributing
### 1. Commit changes to fork
```bash
git add .
git commit -m "brief description of changes"
git push
```### 2. Open Pull Request
Open a pull request in order for your changes to be synced to the main repo
##### 1. Go to the main repo https://github.com/levidavidmurray/grant-game
##### 2. Click [_Pull requests_](https://github.com/levidavidmurray/grant-game/pulls)
##### 3. Click _New pull request_
##### 4. Click _Compare across forks_
##### 5. Change *head repository* to your fork
##### 6. Click _Create pull request_
##### 7. Add description of changes and click _Create pull request_---
## Updating Fork (Sync main repo to your fork)### 1. Sync your fork's repo (update branch)
![image](https://user-images.githubusercontent.com/46084870/203775191-f0a95312-4577-4609-ad81-98b789bf84b8.png)### 2. Pull changes to your local project
```bash
cd grant-game
git pull
```---
## (Miscellaneous) Git Operations#### Pull Changes
```bash
git pull
```#### Push All Changes
```bash
git add .
git commit -m "brief description of changes"
git push
```#### Push Specific Files
```bash
git add EnemySpawner.gd someImg.png
git commit -m "Updated enemy spawner, added new enemy image"
git push
```