env: allow passing a commit message on save

Signed-off-by: Jo-Philipp Wich <jow@openwrt.org>

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@45592 3c298f89-4303-0410-b956-a3cf2f4a3e73
master
Jo-Philipp Wich 2015-05-01 17:23:15 +00:00
parent abaa37b9e8
commit 00f1d3b2c9
1 changed files with 3 additions and 2 deletions

View File

@ -15,7 +15,8 @@ Commands:
delete <name> Delete an environment
rename <newname> Rename the current environment
diff Show differences between current state and environment
save Save your changes to the environment
save [message] Save your changes to the environment, optionally using
the given commit message
revert Revert your changes since last save
Options:
@ -109,7 +110,7 @@ env_diff() {
env_save() {
env_init
env_sync
env_sync "$@"
env_link_config
}