我基本上需要将整个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/...
的工作样本。
有什么想法吗?
答案 0 :(得分:2)
git filter-branch --tree-filter 'mv src src_old && mkdir -p src/main && mv src_old src/main/java' -- --all