Sample program of SAKURA Internet IoT Communication Module

Dependencies:   SakuraIO mbed

View the Github repository.

Files at this revision

API Documentation at this revision

Comitter:
?? ????
Date:
Tue Nov 21 18:07:36 2017 +0900
Parent:
3:6bf66fc3bc57
Parent:
4:59d500069fed
Child:
7:50a76f797bec
Commit message:
Merge pull request #1 from sakuraio/feat/mainte

Add MAINTENANCE.md

Changed in this revision

--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/MAINTENANCE.md	Tue Nov 21 18:07:36 2017 +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_Standard/ SakuraIO_Standard-sync
+cd SakuraIOmbed-sync
+hg push git@github.com:sakuraio/sakuraio-mbed-standard.git
+```
+
+### github.com to mbed.org
+
+```bash
+hg pull git@github.com:sakuraio/sakuraio-mbed-standard.git
+hg outgoing https://developer.mbed.org/teams/SAKURA-Internet/code/SakuraIO_Standard/ # check diff
+hg push https://developer.mbed.org/teams/SAKURA-Internet/code/SakuraIO_Standard/
+```