Skip to content

Commit

Permalink
subtree howto/documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
LaggAt committed May 14, 2021
1 parent c603160 commit dfd512d
Showing 1 changed file with 11 additions and 2 deletions.
13 changes: 11 additions & 2 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,18 @@ Pull requests are the best way to propose changes to the codebase.

### TODO Document: Work on library govee-api-laggat

* if missing, add the library as git subtree in '.git-subtree/python-govee-api'
* this library is added as subtree in '.git-subtree/python-govee-api'

```
git subtree add --prefix .git-subtree/python-govee-api https://github.com/LaggAt/python-govee-api feature/auto_discover_wifi_devices
# how we added it:
git subtree add --prefix .git-subtree/python-govee-api https://github.com/LaggAt/python-govee-api master
# you may want to pull latest master:
git subtree pull --prefix=.git-subtree/python-govee-api/ https://github.com/LaggAt/python-govee-api master
# if you made changes to the library don't forget to push the changes to bug/feature branches there before doing a pull request:
git subtree push --prefix=.git-subtree/python-govee-api/ https://github.com/LaggAt/python-govee-api feature/describe-your-feature
```


Expand Down

0 comments on commit dfd512d

Please sign in to comment.