Added 30 .base.md files using the mmg (Multilingual Markdown Generator) format to automatically generate English (.md) and French (.fr.md) versions of all project documentation. Updated conf/make.documentation.Makefile to process all .base.md files via `make doc_markdown`.
30 lines
672 B
Markdown
30 lines
672 B
Markdown
|
|
# Update ERPLibre
|
|
|
|
## Update all repos from the origin source
|
|
|
|
The update is possible on branch 12.0, you need to verify this branch existence.
|
|
|
|
1. Make sure all git repos are conform, remove all argument depth from manifest and regenerate. You can clean all and
|
|
regenerate.
|
|
|
|
```bash
|
|
./script/git/clean_repo_manifest.sh
|
|
./script/install/install_locally_dev.sh
|
|
```
|
|
|
|
2. Update all remote with ssh/git
|
|
|
|
```bash
|
|
./script/git/git_change_remote_https_to_git.py
|
|
```
|
|
|
|
3. Run update script
|
|
|
|
```bash
|
|
./script/git/git_update_repo.py
|
|
```
|
|
|
|
4. Do a forced push on all needed repo and manage rebase conflicts.
|
|
|
|
5. Test a clone with dev, check file [DEVELOPMENT.md](./DEVELOPMENT.md)
|