安装Git Bash后,地址:https://git-scm.com/downloads
根据自己的操作系统选择对应是安装方式
可参见码云给出的文档:http://git.mydoc.io/?t=180692
注:2~4步骤的项目管理操作必须先使用'cd'命令进入本地仓库中该项目的根目录
1、配置用户名密码(在菜单栏中找到,并打开,界面类似命令行操作)
git config --global user.name "你的名字或昵称" git config --global user.email "你的邮箱"
2、克隆项目(clone)
git clone 项目地址 git clone git@git.oschina.net:zxzllyj/sample-project.git //ssh地址
git clone https://git.oschina.net/zxzllyj/sample-project.git //http地址
3、将项目从服务器更新到本地(pull)
git pull
4、将项目从本地提交到服务器(push)
(1)保存整个项目到本地
git add .
(2)填写更新备注/说明
git commit -m "新建文件"
(3)提交
git push