Git首次使用配置
- 配置用户信息
#配置用户信息
$ git config --global user.name "chenxiaolong"
$ git config --global user.email "chenxiaolong@lalala.com"
- 配置ssh Key
#配置ssh Key
$ ssh-keygen -t rsa -C "chenxiaolong@lalala.com"
#接下来连续三个回车
#查看生成的公钥,并复制
$ cat ~/.ssh/id_rsa.pub
配置远程git仓库
登录到远程git管理工具中,修改个人信息,配置ssh Key,将上一步复制的内容粘贴到指定的位置即可开始克隆远程代码,准备你的开发工作
$ git clone 'ssh远程仓库uri'
Git常用命令
查看本地分支:git branch
查看远程分支:git branch -a
新建本地分支:git branch 'branchName'
删除本地分支:git branch -D 'branchName'
新建远程分支:
#将本地分支推送到远程分支,远程分支不存在会自动创建一个远程分支
git push origin 'localBranch':'remoteBranch'
删除远程分支:
#将本地的空分支推送到远端某个分支,即可删除远程分支
git push origin '':'remoteBranch'
查看提交日志:git log
回到某一次提交:git reset -i '这里写提交的id号'
将所有变动的代码添加到暂存区:git add .
将的暂存区的代码提交到本地仓库:git commit -m '这里写此次提交的评论'
推送到远程仓库:git push origin '本地分支':'远程分支'
从远程仓库拉代码:git pull origin '远程分支'