赞
踩
$ git config --global user.name "xx"
$ git config --global user.email "xx@gmail.com"
查看配置信息
$ git config --list
$ ssh-keygen -t rsa
连按按回车
3. 查看公钥
$ cat ~/.ssh/id_rsa.pub
4.将公钥添加到 SSH Key
5. 拉取代码
$ git clone https://....git
6.提交代码
$ git add . #将当前目录所有文件添加到git暂存区
$ git commit -m "my commit" #提交并备注提交信息
$ git push #将本地提交推送到远程仓库
7.提交MR
创建并切换分支
$ git checkout -b temp
在切换的分支上提交代码
$ git push --set-upstream origin temp
之后在GitLab上提交 Merge Requests
git reset --hard commitID
git reset 其它参数说明
--mixed
意思是:不删除工作空间改动代码,撤销commit,并且撤销git add .操作。
这个为默认参数,git reset --mixed HEAD^和git reset HEAD^效果是一样的。
--soft
不删除工作空间改动代码,撤销commit,不撤销git add .。
--hard
删除工作空间改动代码,撤销commit,撤销git add .。
注意完成这个操作后,就恢复到了上一次的commit状态。
commit注释写错了,只是想改一下注释,只需要:git commit --amend此时会进入默认vim编辑器,修改注释完毕后保存就好了。
git branch -d "branch name"
git push origin -d "branch name"
git stash
git stash pop
这个时候本地文件可能会有冲突,如果有冲突需要你手动解决一下然后再去提交代码,然后在正常进行你要操作的提交代码等操作。
6. 创建分支并同步远端代码
git checkout -b temp origin/temp
git commit --amend
//不用使用 git commit -m "message"
git diff > commit.patch
git apply commit.patch
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。