赞
踩
git config --global user.name "username"
git config --global user.email "xxx@example.com"
git clone "项目地址"
#进入项目目录
cd /xxx/xxx
#创建需上传至 Git云的文件
echo "xxx">>test.py
#将test.py 文件加入索引中。
git add test.py
#将 test.py 提交至本地仓库。
git commit -m "test.py"
#将 test.py 同步至 Git云服务器。
git push
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。