git 命令

Posted cap-rq

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了git 命令相关的知识,希望对你有一定的参考价值。

生成公钥(/c/Users/小强/.ssh/id_rsa.pub)
ssh-keygen -t rsa -C "[email protected]"
 
添加用户 ssh key
在码云的设置中的ssh公钥中将id_rsa.pub中的内容拷贝到公钥中
下载我们的项目
git clone [email protected]:gewennihao/xiangmu2.git
 
查看状态
git status
 
添加文件到缓存区
git add .
 
添加内容到分支上
git commit -m "备注说明"
 
初次使用时要配置下这个
$git config --global --replace-all user.email "输入你的邮箱"
$git config --global --replace-all user.name "输入你的用户名"
 
添加本地数据或者是分支内容,到服务器上
git push origin master
 
切换到其它的分支
git checkout develop
 
将线上develop中的代码pull到本地
git pull
 
 
将远程的origin/zhou分支合并到本地的zhou分支
git checkout -b zhou origin/zhou
 
将develop分支合并到本地分支(在分支中合并)
git merge develop
 
分支操作
git branch -a                查看远程分支     
git branch                   查看本地分支    
git branch develop           添加分支         
git branch -d develop        删除分支         
git push origin ceshi        添加远程分支     
git push origin :ceshi       删除远程分支     
git checkout -b gewen origin/gewen    把远程分支到本地
 
提交步骤
假设当前用户在irui分支上
git add .                  添加到缓存  
git commit -m "备注信息"    添加备注信息
git push origin irui       添加到线上分支
git checkout develop       切换到本地develop
git merge irui             将irui中的数据合并到develop中
git pull                   将线上的数据拉倒本地
git push origin develop    提交到线上develop
git checkout irui          切换到irui分支
git merge develop          将develop分支的信息合并到irui分支
 
 
1.查看Git所有配置
git config --list
2.删除全局配置项
(1)终端执行命令:
git config --global --unset user.name
(2)编辑配置文件:
git config --global --edit
 
 

以上是关于git 命令的主要内容,如果未能解决你的问题,请参考以下文章

Git命令大全

如何Hook Git命令

Git 工具

git 命令行修改提交地址

git diff 命令详解

git常用命令总结 git常用命令总结