Misc Notes

Git使用笔记

命令行下不显示中文的问题:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
set LESSCHARSET=utf-8
git config --global core.quotepath false

# 记住密码
git config --global credential.helper store

# 修改回车符处理
git config --global core.autocrlf false

# 从指定的 remote 获取指定的 commit
git fetch [nick_name] <sha1-of-commit-of-interest>
git reset --hard FETCH_HEAD

# 拉取tag
git fetch --tags

# 清除远程已删除而本地缓存的分支
git remote prune origin