修改git历史中从src /到src / main / java的路径

时间:2016-05-04 13:42:53

标签: git git-filter-branch

我基本上需要将整个git历史记录中的路径从@Test public void getByNameTest(){ Event actualEvent = eventService.getByName("Test event 1"); } 修改为HostConfiguration hostConf = new HostConfiguration(); hostConf.RewriteLocalhost = true; var apiHost = new NancyHost(hostConf, new Uri("http://localhost:8080")); apiHost.Start(); ,将目录结构修改为Maven规则。

我正在尝试找到src/...的工作样本。

有什么想法吗?

1 个答案:

答案 0 :(得分:2)

git filter-branch --tree-filter 'mv src src_old && mkdir -p src/main && mv src_old src/main/java' -- --all