开源中国私有库代码更新
环境
步骤
在开源中国新建私有库
脚本执行代码库更新
- 在本地web项目目录下添加远程库
- 在本地web目录下/Appliactions/XAMPP/htdocs/下面新建online.sh脚本
#!/bin/bash
cd /Applications/XAMPP/htdocs/[项目]
/usr/bin/expect /Applications/XAMPP/htdocs/git.sh
- 在本地web目录下/Appliactions/XAMPP/htdocs/下面新建git.sh脚本
#!/usr/bin/expect
spawn git pull
expect "Username for 'https://git.oschina.net':"
send "luckyyulin@sina.cn\r"
expect "Password for 'https://luckyyulin@sina.cn@git.oschina.net':"
send "[password]\r"
expect eof
exit
- 在本地web目录下/Appliactions/XAMPP/htdocs/下执行 sh online.sh,项目的代码库就可以和远程仓库同步了。
**粗体** _斜体_ [链接](http://example.com) `代码` - 列表 > 引用
。你还可以使用@
来通知其他用户。