git清空所有记录


git的一些操作

清空所有commit

git checkout --orphan latest_branch;
git add -A;
git commit -m "commit message";
git branch -D master;
git branch -m master;
git push -f origin master;

清空远程仓库

不清空.git直接清空仓库文件就git pull下来。删了所有文件,然后三连

git add . && git commit -m "delall" && git push

gitignore不起作用

git rm -r --cached .
git add .
git commit -m 'update .gitignore' 

文章作者: xyzz
文章链接: http://www.xyzzpwn.top
版权声明: 本博客所有文章除特別声明外,均采用 CC BY 4.0 许可协议。转载请注明来源 xyzz !
 上一篇
hexo主题更换加npm升级 hexo主题更换加npm升级
更换hexo主题从yilia换到matery所有大写在github page会出现错误,所以更改名称 cd themes; git clone https://github.com/blinkfox/hexo-theme-matery.g
2020-08-14
下一篇 
vsphere 即时克隆 vsphere 即时克隆
用途vsphere6.7即以上的instant clone,使用脚本进行设置属于能用就行的东西,不想优化 环境conda create -n vsphere python=3.7 source activate vsphere or
  目录