opoo / opoopress

OpooPress framework is a java based blog aware static site generator.
http://www.opoopress.com/
Apache License 2.0
113 stars 31 forks source link

通过 git 发布网站时,无法删除不需要的旧文件 #16

Open opoo opened 10 years ago

opoo commented 10 years ago

opoopress-wagon-git 在发布网站时,无法删除不用的旧文件,这与该插件目前的运作流程有关:

  1. 生成网站到目录 target/public/site,后称目录 a
  2. 创建临时目录 b
  3. git clone 原网站内容到目录 b
  4. 复制目录 a 中的内容到目录 b,若文件存在,则覆盖
  5. 执行 git 指令:git add .git commit -m public sitegit push
  6. 删除临时目录 b
marklma commented 9 years ago

5.那里前面增加一句git add -A