29 lines
671 B
Markdown
29 lines
671 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)
|