Git的掌握主要分为:三大板块
一、本地仓库的使用
1.1 本地仓库的三个板块:
1.2 本地仓库的常见的使用命令:
git status 查看文件的状态
git add 将文件的修改加入到暂存区中
git reset 将暂存区中的文件取消或者切换到指定的版本
// git reset -- help xx 回退到指定的版本
git commit 将暂存区的文件修改提交到版本库
git log 查看日志文件
二、远程仓库的命令
2.1 远程仓库的常见命令
git remote 查看远程仓库
git remote add (别名) (仓库的地址) 添加远程仓库(可添加到多个)
git clone 从远程仓库克隆
git pull 从远程仓库拉取
git push (远程仓库的别名) (分支名称) 推送到远程仓库
2.2 历史版本的冲突问题
注意: 如果当前本地仓库不是从远程仓库克隆,而是本地仓库创建的文件,并且仓库中仓库文件,此时从远程拉取文件的时候会报错误(fatal:refusing to merge unrelated histories)
解决此问题可以在git pull命令后加入参数
-- allow -unrelated -histories
三、git的分支
3.1 常见的命令
git branch 查看分支
git branch [name] 创建分支
git checkout [name] 切换分支
git push [shortName] [name] 推送到远程仓库分支
git merge [name] 合并分支
分支的操作
git branch 列出使用本地分支
git branch -r 列出使用的远程分支
git branch -a 列出的本地分支和远程分支
四: