进行管理(bug1941) new file: operation/finish_install/99create_git_manage.sh new file: operation/finish_install/cfg_create_git.sh Signed-off-by: Wei,Shuai <swei@linx-info.com>
34 lines
962 B
Bash
34 lines
962 B
Bash
#!/bin/bash
|
|
#===============================================================================
|
|
#
|
|
# FILE: cfg_create_git.sh
|
|
#
|
|
# USAGE: ./cfg_create_git.sh
|
|
#
|
|
# DESCRIPTION: create git of /etc and /usr/share/config
|
|
#
|
|
# OPTIONS: ---
|
|
# REQUIREMENTS: ---
|
|
# BUGS: ---
|
|
# NOTES: ---
|
|
# AUTHOR: Wei Shuai , swei@linx-info.com
|
|
# COMPANY: linx-info
|
|
# COPYRIGHT: Copyright 2001-2014 Linx Technology Co.,Ltd.
|
|
# CREATED: 2014年08月08日 13时50分49秒 CST
|
|
# REVISION: ---
|
|
#===============================================================================
|
|
|
|
#create git of /etc
|
|
cd /etc
|
|
git init-db
|
|
git config --global "user.name" "sysadmin"
|
|
git add .
|
|
git commit -m "git manage of /etc/ init..." 1>/dev/null
|
|
|
|
#create git of /usr/share/config
|
|
cd /usr/share/config/
|
|
git init-db
|
|
git config --global "user.name" "sysadmin"
|
|
git add .
|
|
git commit -m "git manage of /usr/share/config/ init..." 1>/dev/null
|