mirror of
https://github.com/Sevichecc/Urara-Blog.git
synced 2025-05-01 02:29:30 +08:00
87 lines
4.5 KiB
Markdown
87 lines
4.5 KiB
Markdown
---
|
||
title: Git · 常用操作笔记
|
||
created: 2022-05-25
|
||
summary: 每次更新博客进行的操作以及常见错误处理
|
||
tags:
|
||
- Git
|
||
---
|
||
|
||
**资料:**
|
||
|
||
- [GIT CHEAT SHEET](https://education.github.com/git-cheat-sheet-education.pdf)
|
||
- [45 个 Git 经典操作场景,专治不会合代码](https://mp.weixin.qq.com/s/BzdgZXyM1UaNCUCXySL9Rw)
|
||
- [版本控制(Git) - 计算机教育中缺失的一课](https://missing-semester-cn.github.io/2020/version-control/)
|
||
- [战壕里面的 Git(Git In The Trenches)](http://cbx33.github.io/gitt/intro.html)
|
||
|
||
## 每次更新博客进行的操作
|
||
|
||
### 1. 追踪所有文件
|
||
|
||
(除了 gitignore 里面的),也可以单独加
|
||
|
||
`git add -A`
|
||
|
||
### 2. 提交上传信息
|
||
|
||
`git commit -m '一些信息,如fixed something etc'`
|
||
|
||
### 3. push 到 Github
|
||
|
||
`git push origin main`
|
||
|
||
等待一会儿就好了,如果不行,换个网或者关掉 VPN 看看
|
||
|
||
## 常用 Git 操作
|
||
|
||
- `.gitignore`: 放不想传到 git repo 的文件/文件夹
|
||
- 当内容改动很多的时候,最好开一个 branch
|
||
- VSCode 文件后面的字母:
|
||
- U:untrack
|
||
- M: modified
|
||
- A : on track
|
||
- 一般不在`main` 或`master` 修改代码,而是开一个 branch,确定好后再 merge
|
||
- 下载叫做 pull,上传是 push
|
||
|
||
| 命令 | 作用 |
|
||
| :----------------------------------------------------------- | ------------------------------------------------- |
|
||
| `git config --global user.name 名字` | 设置名字 |
|
||
| `git config --global user.email 邮箱` | 设置邮件 |
|
||
| `git init` | 初始化 |
|
||
| `git add -A` | 追踪所有文件(除了 gitignore 里面的),也可以单独加 |
|
||
| `git commit -m` | m 代表信息,后面要写 commit 相关信息 |
|
||
| `git status` | 查看 git 状态/信息 |
|
||
| `git log` | 查看 commit 日志,按 Q 才可以退出 |
|
||
| `git reset hard (commit的id)` | 回到特定版本 |
|
||
| `git reset hard --HEAD` | 返回上一次改动 (还没有 commit) |
|
||
| `git branch` | 列出现在有的 branch,按 Q 退出 |
|
||
| `git branch (branch'name)` | 创建新 branch |
|
||
| `git merge (branch'name)` | 合并 branch 到 main |
|
||
| `git checkout (branch's name)` | 切换 branch |
|
||
| `git remote add origin https://github.com/用户名/仓库名.git` | 链接到 remote repo |
|
||
| `git pull` | 拉更新 |
|
||
| `git push origin (branch'name)` | push 到 remote repo |
|
||
|
||
## 常见问题
|
||
|
||
下面是一些我看过的文章
|
||
|
||
### 版本回滚
|
||
|
||
- [项目中 git 怎么回退到之前的版本 & git 放弃本地修改,强制拉取更新](https://mp.weixin.qq.com/s/MCtCQg7rcokf6IrZVINF4w)
|
||
- [Git 学习笔记:版本回退](https://mp.weixin.qq.com/s/98wEvWU6OYVkPauWn-XXng)
|
||
- [如果你还不会用 git 回滚代码,那你一定要来看看](https://mp.weixin.qq.com/s/FPiSyeivTKhoAgJmORZFog)
|
||
|
||
### 报错处理
|
||
|
||
- [git push 错误 failed to push some refs to 解决方法](https://blog.csdn.net/qq_39416311/article/details/102219428)
|
||
- [git 上传忽略 node_modules](https://blog.csdn.net/jiandan1127/article/details/81205530)
|
||
|
||
### 博客相关
|
||
|
||
- [GitHub Pages 绑定来自阿里云的域名](https://blog.csdn.net/qq_29232943/article/details/52786603)
|
||
- [Hexo 发布到 Github 丢失 readme 和 CNAME 解决方案](https://www.cnblogs.com/LandWind/articles/8269636.html)
|
||
- [把 HUGO 博客托管到 GITHUB 上](https://www.freesion.com/article/37111127345/)
|
||
|
||
### 其他
|
||
|
||
- [Github 上如何添加 LICENSE 文件?](https://www.cnblogs.com/chenmingjun/p/8555906.html)
|