Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependencies: AQM0802A BME280 MPU9250_SPI SakuraIO gps mbed
Fork of SakuraIO_Evaluation_Board_Standard by
Diff: MAINTENANCE.md
- Revision:
- 9:b1b39ff3bd85
- Child:
- 10:b5d2aeda9628
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/MAINTENANCE.md Mon Jul 30 13:39:33 2018 +0900 @@ -0,0 +1,32 @@ +# Maintenance + +## Sync with github.com + +### Setup hg-git + +```bash +pip install mercurial hg-git +``` + +#### ~/.hgrc + +``` +[extensions] +hggit = +``` + +### mbed.org to github.com + +```bash +hg clone https://developer.mbed.org/teams/SAKURA-Internet/code/SakuraIO_Evalution_Board_Standard/ SakuraIO_Evalution_Board_Standard-sync +cd SakuraIO_Evalution_Board_Standard +hg push git@github.com:sakuraio/SakuraIO_Evalution_Board_Standard.git +``` + +### github.com to mbed.org + +```bash +hg pull git@github.com:sakuraio/SakuraIO_Evalution_Board_Standard.git +hg outgoing https://developer.mbed.org/teams/SAKURA-Internet/code/SakuraIO_Evalution_Board_Standard/ # check diff +hg push https://developer.mbed.org/teams/SAKURA-Internet/code/SakuraIO_Evalution_Board_Standard/ +```