git相关

git介绍和基本使用命令, 2019-01-12

2019-01-12  本文已影响0人  ZweigZhao

git 整理

0 介绍

git 是一个分布式版本控制工具。
对于客户端, 每次clone操作是对代码仓库的完整备份,每次提交更改是对全部文件制作一个快照,并保存这个快照的索引, 对待数据更像是一个快照流,客户端本地操作不用访问远程仓库而是直接从数据库读取, 所以本地操作极其快速,操作不受网络限制,最后在有网络的时候上传即可, 而当任意协同服务器放生故障, 可以用本地仓库恢复。
三种工作状态, 已修改, 已暂存, 已提交

1 mac安装

which git  查看自己是否安装
brew install git   使用homebrew安装

2 初始化

git init 
在PyCharm 工具拦, 依次点击
Vcs -> import into version control -> share project on GItHub
填上账号密码即可
cd ~/.ssh   查看是否有id_rsa.pub 文件, 若没有,则生成
 ssh-keygen -t rsa -C "youremail@example.com"
把公钥拷贝到 github账户下的setting -> SSH and GPS key 
然后应该就可以了
使用PyCharm 管理可直接在配置项
 Preferences -> Version Control  配置管理git
添加个人的用户信息
$ git config --global user.name "John Doe"
$ git config --global user.email johndoe@example.com
$ git config --global core.editor emacs   # 文本编辑器常用emacs 或vim
检查配置
$ git config --list
$ git config user.name  # 类比检查某一项的用法
获取帮助, 三种会其一即可
git <verb> --help 
git help <verb>
man git-<verb> 

3 基础命令

git clone 地址
git add .  或者 git add 文件名
git commit -m '描述'
git status
git status --short 或 -s   # 紧凑输出
             #标记含义, ??:未跟踪,     
                       #左A:新文件已暂存,右A:新文件未暂存
                       #左M:已修改已暂存,右M:已修改未暂存
.gitignore  # 忽略文件, 格式为简化版的正则表达式-glob模式
git diff  
git diff --cached         # 查看已暂存diff
git diff HEAD --<file>    #对比版本库和工作区
git diff HEAD HEAD^       # 对比版本库 
git rm <file>
git rm log/\*.log       # 删除log目录下拓展名为.log的文件
git rm   \*~            # 删除以~结尾的所有文件
git rm -f  <file>       # 移除修改过并暂存的文件, 因修改过而还没提交, 无法恢复,所以加 -f
git rm --cached <file>   # 从暂存区移除, 保留到工作区
git mv <old_file> <new_file>
git log
git log -p -2     # 展示近两次的提交, -p展示内容差异
git log --stat    # 展示每次提交的简略统计信息
git log --pretty=_    #_有多种选择展示详细->简略  fuller, full, short, oneline
git log --pretty=format:'%h: %s '  --graph # 自己选择参数选择输出 graph 添加了一些形象字符串
git commit --amend   追加
git checkout --<file>
git remote -v  # 查看远程仓库
git remote add <shortname> <url>  # 添加一个远程仓库
git pull              # 相当于 git fetch + git merge
git pull --rebase     # 相当于 git fetch + git rebase
git push origin <branch-name>
git push origin HEAD: refs/for/<branch-name> # 差一步推送到分支
git remote show origin  # 查看远程和本地的所有分支
git tag                 # 查看所有标签
git tag -l 'v1.2.*'     # 以条件查看标签
git tag -a 'v.1.2.1' -m 'describe'     # 添加附注标签
git show 'v.1.2.1'      # 查看
git tag [-a/-m/-s] <tag_name> <commit_id>  # 打标签
git push origin <tag_name>  # 推送标签到远程
git tag -d <tag_name>       # 删除标签
git push origin --delete tag <tag_name> # 删除远程仓库标签
git branch  <branch_name>      # 创建分支
git checkout -b <branch_name>    # 创建并切换到创建的分支
git checkout -b <branch_name> <tag_name> # 在某一标签上创建一个分支
git checkout  <branch_name>
git branch -d <branch_name>    # 删除分支
git config --global alias.co checkout     # git co  == git checkout 
git config --global alias.ci commit       # git ci == git commit 
git config --global alias.visual '!gitk'    # ! 不再是git 的子命令,git visual == gitk

4 进阶

git merge <branch>    # branch -> present_branch
git rebase -i <nums>
git rebase <branch1> <branch2>   # branch2 -> branch1
git branch -f  <branch_name> <位置>     # 强制移某分支->到某位置
git cherry-pick  <commit_id>
git reset  <version> # 可用--hard工作区不在保留, 默认--soft
git revert 
git stash save 'descirbe'
git stash list
git stash apply stash@{nums}
git stash drop            # 删除最近一次的保存记录
git stash pop             # pop出最近一次保存的记录
git stash clear           # 清空
git stash show            # 展示最近的一次记录和当前差异
git reflog --date=[iso | local | relative] | grep [-w 全词匹配] <branchname>
git reset --hard <reflog>  # 恢复误删的commit
git blame -L 160,+10  <file>   # 某文件160行到170行的操作人, -L为可选option
git clean -n      # 告诉你哪些要被删除
git clean -f      # 执行删除
git clean -df  [<path>]   # 删除目录下所有没被跟踪的文件
git clean -xf      # 删除目录下所有没被跟踪的文件,包括被gitignore忽略的文件
上一篇 下一篇

猜你喜欢

热点阅读