如果只是个人备份 这些就够了
git add -A
提交git commit -m'first commit'
将本地代码更新到仓库git push
将仓库代码更新到本地git pull
切换新分支
git checkout -b 分支名
git push —set-upstream origin Second-development
个人服务器上使用
强制更新
git fetch --all
git reset --hard origin/master
git pull
强制push
git push -u origin master -f
**
编辑git config
设置代理
[https “https://github.com“]
proxy = http://127.0.0.1:1087
[http]
postBuffer = 524288000
proxy = http://127.0.0.1:1087/
[https]
proxy = http://127.0.0.1:1087/