1. git 配置初始化本地库
git config --global user.name "Your account name" #自己的姓名,commit代码的时候用到 git config --global user.email "your email address" #自己的邮箱,commit代码的时候用到。
2. 代码下载修改提交代码
git clone "your project address " #下载仓库 将要上传的文件添加进本地仓库,或修改下载的文件 git add . #将修改的文件添加到暂存区 git commit -m “some message” #提交修改到版本库,需要添加commit message.
3.将本地的仓库关联到gitlab上,后面的https链接地址换成你自己的仓库url地址,是HTTP 非SSH地址,
git remote add origin https://xxx/xxx/xxxx
4.上传代码到gitlib远程仓库
git pull origin master git push -u origin master #push 自己的分支到gitlab,如果这里提示没有权限,是因为你的ssh配置有问题,需要重新配置
5.其他
git status:查询是否加入成功
git commit -m "":只会提交添加到缓存区的文件到本地仓库;
或者git commit -a -m "": 能提交修改过但没有添加到缓存区的文
git push origin master:将本地仓库的文件上传到线上仓库;
参考 https://www.cnblogs.com/hafiz/p/8146324.html