octopress在github中的代码分支里文件删除的问题
搭的博客是octopress.发布在github上。在上面也开了个分支source
备份代码用。之前写了几篇博客,也在_post
文件夹里生成了相应的markdown
文件。提交到source
分支后想把一些博客删了。但使用以下git命令后,source
分支里的相应文件并没有删除。
git add .
git commit -m 'delete post'
git push origin source
google后在stackoverflow上找到了方法。
git add -u
This tells git to automatically stage tracked files – including deleting the previously tracked files.
要把source
分支里相应的文件也删除,就可以使用下面命令
git add -u
git commit -m 'delete post'
git push origin source