博客访问链接:
CSDN :shankes的博客
简书 : shankes
码云:shankes.gitee.io
github:sankes.github.io
回到顶部
文档链接1
文档链接2
$ git init
当前目录生成一个 .git 目录
$ git add *.c
$ git add README
$ git commit -m '初始化项目版本'
$ git add . # 命令来添加当前项目的所有文件
纳入版本控制,对这些文件进行跟踪,然后提交
$ git clone
$ git clone [email protected]:fsliurujie/test.git # --SSH协议
$ git clone git://github.com/fsliurujie/test.git # --GIT协议
$ git clone https://github.com/fsliurujie/test.git # --HTTPS协议
克隆到指定的目录
$ git status -s
-s 参数,以获得简短的结果输出
$ git diff
显示已写入缓存与已修改但尚未写入缓存的改动的区别
git status 显示你上次提交更新后的更改或者写入缓存的改动, 而 git diff 一行一行地显示这些改动具体是啥
$ git commit -m '注释'
缓存区内容添加到仓库
$ git config --global user.name 'xxx'
$ git config --global user.email [email protected]
Git 为你的每一个提交都记录你的名字与电子邮箱地址,所以第一步需要配置用户名和邮箱地址
$ git commit -am '注释'
如果你觉得 git add 提交缓存的流程太过繁琐,用 -a 选项跳过
回到顶部
$ git reset HEAD hello.php
$ git reset [--soft | --mixed [-N] | --hard] HEAD~X # X:代表次数
git reset HEAD 以取消之前 git add 添加
Resets the index but not the working tree (i.e., the changed files are preserved but not marked for commit) and reports what has not been updated. This is the default action
选择你要revert的目录
你当前在哪个branch
Soft:选择这个模式意思是仅仅撤销commit而已,不影响你本地的任何文件,也不影响(index)缓存区的任何文 件。
Hard:不仅撤销commit的内容,还将本地的文件指向你commit前的版本,同时index也会指向commit前的版本。
Mixed:这个模式从我个人角度来看其实还是有点模糊的。从我的角度理解就是只是回滚index,其余的都不变。
HEAD后面加个“~1”,数字代表commit次数,
1:是回滚最后一次提交,2:就是后两次提交的都回滚。此时它的功能和soft模式一样
查看影响到的文件
$ git rm --cached
$ git rm
$ git rm -f
$ git rm –r
$ git rm –r *
删除文件
$ git mv fileName newFileName
回到顶部
$ git branch
没有参数时,git branch 会列出你在本地的分支
$ git branch (branchname)
$ git checkout (branchname)
$ git checkout -b (branchname)
$ git branch -d (branchname)
$ git merge (branchname)
合并到当前分支
手动去修改,用git add 要告诉 Git 文件冲突已经解决
回到顶部
$ git log
$ git log --oneline # 选项来查看历史记录的简洁的版本
$ git log --graph # 选项,查看历史中什么时候出现了分支、合并
$ git log --reverse # 参数来逆向显示所有日志
$ git log --author=Linus --oneline -5 # 指定用户的提交日志
$ git log --decorate
$ git log --oneline --before={2.weeks.ago} --after={2019-07-11} --no-merges
例如,如果我要看 Git 项目中三周前且在四月十八日之后的所有提交,我可以执行这个(我还用了 --no-merges 选项以隐藏合并提交)
回到顶部
$ git tag -a v1.0
$ git tag -a v0.9 2d596e3
追加标签
$ git tag
查看所有标签
$ git tag -s -m "xxx标签"
PGP签名标签
回到顶部
git remote add [shortname] [url]
$ git remote -v
$ git fetch origin
该命令执行完后需要执行git merge 远程分支到你所在的分支。
2. 从远端仓库提取数据并尝试合并到当前分支
$ git merge origin/master
$ git push [alias] [branch]
$ git push origin master
git remote rm [alias]
回到顶部
$ git submodule update --init --recursive
$ git submodule update --recursive
$ git submodule add
$ cat .gitmodules
[submodule "xxx"]
path = xxx
url = git://github.com/xxx/xxx.git
$ git submodule init # 初始化你的本地配置文件
$ git submodule update # 拉取子模块
$ git submodule update # 更新状态
回到顶部
如果您觉得对您有所启发或帮助(并且个人有余力,感谢打赏)