再使用git过程常用的命令在6-10左右,但是如果你想精通git那么需要记住的命令在80左右,
下面看这张图,我们了解一下git的概念的常用操作!
Workspace:工作区(例如eclipse的工作目录)
Index / Stage:暂存区
Repository:仓库区(或本地仓库)
Remote:远程仓库
初次运行git需要设置用户信息
1、新建代码库
2、git配置
Git的设置文件为.gitconfig,它可以在用户主目录下(全局配置),也可以在项目目录下(项目配置)。
3、git新增或者删除文件
4、git代码提交
5、git分支
6、git标签
7、git查看信息
8、git远程同步
9、撤销
10、其他操作
文参考:
https://www.ezlippi.com/blog/2016/02/git-guide.html#more
以上是我们git最常用的命令,一些特殊的操作命令,我们需要查看一些手册!
[core]
repositoryformatversion = 0
filemode = false
logallrefupdates = true
[remote "origin"]
url = x
push = refs/heads/master:refs/heads/master
fetch = refs/heads/master:refs/remotes/origin/master