Git常用命令集录

版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/zhaobryant/article/details/41345233

这篇文章用于记录个人常用和记不住的git命令。

一、配置

1. 配置账号信息

git config --global user.name helloworld
git config --global user.email helloworld@csdn.net
git config --list                       #查看配置的信息
git help config                         #获取帮助信息

2. 配置自动换行

git config --global core.autocrlf input #提交到git是自动将换行符转换为lf

3. 配置密钥

ssh-keygen -t rsa -C yanhaijing@yeah.net  #生成密钥
ssh -T git@github.com                     #测试是否成功

二、操作

1. 新建仓库

git init                                                   #初始化
git status                                                 #获取状态
git add file                                               #.或*代表全部添加
git commit -m "message"                                    #此处注意乱码
git remote add origin git@github.com:yanhaijing/test.git   #添加源
git push -u origin master                                  #push同时设置默认跟踪分支

2. 从现有仓库克隆

git clone git://github.com/helloworld/data.git
git clone git://github.com/helloworld/grit.git mypro #克隆到自定义文件夹

3. 基本处理

git add *                     #跟踪新文件
rm *&git rm *                 #移除文件
git rm -f *                   #移除文件
git rm --cached *             #取消跟踪
git mv file_from file_to      #重命名跟踪文件
git log                       #查看提交记录
git commit                    #提交更新
git commit -m 'message'
git commit -a                 #跳过使用暂存区域,把所有已经跟踪过的文件暂存起来一并提交
git commit --amend            #修改最后一次提交
git reset HEAD *              #取消已经暂存的文件
git checkout -- file          #取消对文件的修改(从暂存区去除file)
git checkout branch|tag|commit -- file_name    #从仓库取出file覆盖当前分支
git checkout -- .             #从暂存区去除文件覆盖工作区

4. 分支处理

git branch                #列出本地分支
git branch -r             #列出远端分支
git branch -a             #列出所有分支
git branch -v             #查看各个分支最后一个提交对象的信息
git branch --merge        #查看已经合并到当前分支的分支
git branch --no-merge     #查看为合并到当前分支的分支
git branch test           #新建test分支
git checkout test         #切换到test分支
git checkout -b test      #新建+切换到test分支
git checkout -b test dev  #基于dev新建test分支,并切换
git branch -d test        #删除test分支
git branch -D test        #强制删除test分支
git merge test            #将test分支合并到当前分支
git rebase master         #将master分之上超前的提交,变基到当前分支

5. 远端处理

git fetch originname branchname               #拉取远端上指定分支
git merge originname branchname               #合并远端上指定分支
git push originname branchname                #推送到远端上指定分支
git push originname localbranch:serverbranch  #推送到远端上指定分支
git checkout -b test origin/dev               #基于远端dev新建test分支
git push origin :server                       #删除远端分支

三、源

git是一个分布式代码管理工具,所以可以支持多个仓库,在git里,服务器上的仓库在本地称之为remote。

git remote add origin1 git@github.com:yanhaijing/data.js.git
git remote                                  #显示全部源
git remote -v                               #显示全部源+详细信息
git remote rename origin1 origin2           #重命名
git remote rm origin1                       #删除
git remote show origin1                     #查看指定源的全部信息

四、标签

当开发到一定阶段时,给程序打标签是非常棒的功能。

git tag                              #列出现有标签
git tag v0.1                         #新建标签
git tag -a v0.1 -m 'my version 1.4'  #新建带注释标签
git checkout tagname                 #切换到标签
git push origin v1.5                 #推送分支到源上
git push origin --tags               #一次性推送所有分支
git tag -d v0.1                      #删除标签
git push origin :refs/tags/v0.1      #删除远程标签

五、总结

啊哈!终于总结完了,以后不会的时候,再也不用到处去找了。

其实还有两个最有用的命令还未提到。

git help *#获取命令的帮助信息
git status#获取当前的状态,非常有用,因为git会提示接下来的能做的事情
上一篇:Docker视频发布


下一篇:阿里云大数据工具,让海底捞更懂你