标签:bsp 查看 body 项目 soft word dem 多个 css
序号 | 命令 | 作用 | 示例 |
1 | git clone | 克隆版本库(下载 github 上的项目) | git clone https://github.com/huanggyaaa/vue-router-simple-demo.git |
2 | git remote | 版本库相关设置 |
git remote -v //查看远程仓库, 如果有多个显示列表 git remote add origin https://github.com/huanggyaaa/vue-router-simple-demo.git //添加远程仓库, origin 是别名 git remote rm origin // 删除 origin 这个远程仓库 |
3 | git add |
提交到暂存区(被跟踪) |
git add . // 讲所有内容保存到暂存区, 不包括删除的文件 git add *css // 把 css 结尾的文件添加到暂存区 git add hello* // 把 hello 开头的文件保存到暂存区 git add -u // 只保存修改过的文件到暂存区 git add -A // git add. 和 git add -u 功能集合 |
4 | git commit | 提交到版本库 |
git commit -m "first commit" // 将暂存区的内容提交到版本库 git commit -a -m "second commit" // 将所有已跟踪的文件提交到版本库; 跳过 git add 命令 |
5 | git push |
提交到远程仓库 |
git push origin master // 把 master 分支提交到 origin 远程仓库, master 分支如果不存在会被新建 git push -u origin master // 和上面的命令的区别是: 把 origin 设为默认远程仓库 |
6 | git pull |
更新远程仓库代码到本地并合并 |
git pull // 更新远程仓库的所有分支到本地并合并本地的代码, 如果远程和本地仓库某个文件同时做了修改就会报错 |
7 | git fetch |
更新远程仓库代码到本地 |
git fetch origin master // 从 origin 远程仓库获取 master 分支到 本地仓库的 master 分支(不会直接合并) git log -p master.. origin/master // 比较本地和远程仓库的区别 git merge origin/master // 合并 |
git log 列出提交的commit_id
git reset --hard commit_id // 撤销某个版本的提交, 工作区也提交, 意味着工作白费了
git reset --soft
标签:bsp 查看 body 项目 soft word dem 多个 css
原文地址:https://www.cnblogs.com/huanggy/p/10081365.html