赞
踩
# 在你要上传的文件夹下,右键Git Bash Here
git init
# 如果使用了 --global 选项,那么该命令只需要运行一次,因为之后无论你在该系统上做任何事情, Git 都会使用那些信息。
# 当你想针对特定项目使用不同的用户名称与邮件地址时,可以在那个项目目录下运行没有 --global 选项的命令来配置
git config --global user.name "zhangsan"
git config --global user.email "xxxxx@xx.com"
# 如果之前没有生成阿里云的ssh密匙,根据 https://code.aliyun.com/help/ssh/README 进行设置
git remote add origin https://code.aliyun.com/xxx/xxx.git
git add .
git commit -m "提交说明&#
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。