查看当前远程地址:
% git remote -v
移除当前地址:
% git remote remove origin
更换地址:
% git remote add origin https://gitee.com/wzqgit/yuanhou.git
在新分支上添加您需要提交的内容并提交:
% git add .
% git commit -m "添加大文件或其他更改"
查看当前分支:
% git branch
当前分支是否有内容提交
% git status
强制推送分支到远程仓库:
% git push -u origin 1.0.0.2 --force
% git push origin master --force
尝试增加 http.postBuffer 大小(例如设置为 500 MB):500x1024x1024
% git config --global http.postBuffer 524288000