23 lines
409 B
Markdown
23 lines
409 B
Markdown
# Hello world !
|
|
|
|
This is my personnal add-ons configuration. Feel free to use it, or fork it to edit it as your liking !
|
|
|
|
## Managind submodules
|
|
|
|
Add a submodule with
|
|
```bash
|
|
git submodule add [url]
|
|
git submodule init
|
|
```
|
|
|
|
Download and update submodules content with
|
|
```bash
|
|
git submodule update
|
|
```
|
|
|
|
Register a new version with
|
|
```bash
|
|
git commit -nam "This message describes the version"
|
|
git push
|
|
```
|