一些与 git 和 GitHub 相关的常用操作
主要是脑子越来越不好使了,写下来防止忘记。
git 的代理
git config --global http.proxy http://127.0.0.1:1080
好像只配置这一个就够用了。
有一个更好的做法。参见Windows 下为各类 CLI 设置代理。
强制取消本地更改
使用远程分支覆盖本地
这是最佳的方式。
1 | git fetch --all |
直接删掉
git clean -f
直白点就是把本地乱七八糟的更改全都扬了。比较适合多了很多乱七八糟文件的情况,比如 OneDrive 同步被搞炸的时候:
有时需要加上 -d
,把目录下所有未同步的更改全删了。
官方的帮助文档是这样说的:
usage:
git clean [-d] [-f] [-i] [-n] [-q] [-e <pattern>] [-x | -X] [--] <paths>...
-q, --quiet do not print names of files removed -n, --dry-run dry run -f, --force force -i, --interactive interactive cleaning -d remove whole directories -e, --exclude <pattern> add <pattern> to ignore rules -x remove ignored files, too -X remove only ignored files
本地分支与上游分支同步
(其实这种东西完全搜得到……单纯怕忘。)
1 | git remote -v # 查看有无上游代码库 |
比如说跟 OI-wiki 的上游分支同步。
参考文档
git 设置和取消代理(作者给的是无效的,但是后面的回复里有有效的)
Github进行fork后如何与原仓库同步:重新fork很省事,但不如反复练习版本合并
version control - How do I force “git pull” to overwrite local files? - Stack Overflow