https://github.com/catalystcode/drones-for-good
https://github.com/catalystcode/drones-for-good
Last synced: 10 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/catalystcode/drones-for-good
- Owner: CatalystCode
- License: mit
- Created: 2017-07-18T10:11:13.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2017-07-24T15:18:15.000Z (over 8 years ago)
- Last Synced: 2025-01-22T15:48:01.118Z (11 months ago)
- Size: 3.91 KB
- Stars: 1
- Watchers: 7
- Forks: 1
- Open Issues: 12
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Drones For Good
## Cloning & Installing
Run the following commands:
```
git clone https://github.com/CatalystCode/drones-for-good
cd drones-for-good
git submodule init
git submodule update
```
## Adding updates
You can work on each repo separately as you would any other repo.
You can also work on the submodules from this parent clone, and commit the changes:
```
cd drones-for-good-demo
git checkout master
git add .
git commit -m "changes made to..."
git push origin master
```
Once you include updates and push them, you need to update the refs on the parent repo:
```
git submodule foreach git pull origin master
git add .
git commit -m "sub modules updated"
git push origin master
```