Git 使用心得

ZhuYuanxiang 2019-01-08 00:00:00
Categories: Tags:

Git terms

Q&A

使用git出现的 "receive.denyCurrentBranch" Configuration variable to "refuse" 问题及解决

  1. 使用 Git Bash,进入项目的目录,然后输入 git config receive.denyCurrentBranch ignore,即可
  2. 在仓库建立之前,使用 git --bare init --shared,然后建立仓库即可

GitHub Q&A

使用 ipaddress.com 查找下面 3 个网址对应的 IP 地址:

1
2
3
4
5
github.com

assets-cdn.github.com

github.global.ssl.fastly.net

修改 hosts 文件,刷新 dns 缓存。

使用 ping.chinaz.com,查找最快的节点 IP 进行访问。

Git commands

1
2
3
4
5
6
7
git add .
git commit -m "有问题的提交"
git log
git reset HEAD~
git log
git add .
git commit -c ORIG_HEAD

git reset q&a: https://stackoverflow.com/questions/927358/how-do-i-undo-the-most-recent-local-commits-in-git/927386#927386