有没有工具可以给我两个.css文件的合并版本?

时间:2017-08-09 04:22:34

标签: css git merge

我想要合并两个/* file1.css */ .header{ background-color: #f1f1f1; font-size: 13px; } /* file2.css */ .header{ background-color: #f1f1f1; } .footer{ background-color: gray; position: reletive; } /* expected_result.css */ .header{ background-color: #f1f1f1; font-size: 13px; } .footer{ background-color: gray; position: reletive; } 个文件。像什么 git 死了。我正在寻找的是像git这样的工具,它将两个文件作为输入并生成一个文件作为输出,这是这两个输入文件的合并版本。

有这样的事吗?

例如:

def index
  render html: '', layout: true
end

0 个答案:

没有答案