1.下载
地址下载:https://git-scm.com/download/win, 以默认方式安装。
配置身份
初次使用时配置身份 (用来在提交代码时识别用户)
git config --global user.name "xxx"
git config --global user.email "xxx@xxx.co
2.查找相应项目的git下载地址
image.png
3.常用操作
右键,Git Bash Here 打开命令窗口
image.png
#切换到自己相应的目录
cd d:/gitblit
#拉取项目文件
git clone http://hugang@192.168.0.7:9080/gitblit/r/~yuankun/assist-police.git
#提交代码先更新
git pull
// 代码提交:
git status //查看哪些文件发生了改变
git add src// .表示添加所有文件,也可以替换成目录名,文件名
git add pom.xml
git commit -m '注释,写你提交了什么代码' // 提交到本地仓库
git push origin master // 从本地库推送到远程库(gitblit),初次使用时,会让你输入用户名和密码验证身份
4.遇到的问题
#The file will have its original line endings in your working directory.
git rm -r -f --cached ./ // 删除缓存
git add . //添加该目录下所有文件
git push -u origin master //这时候提交就没问题了
网友评论