为什么我在尝试将sit与gv一起使用时遇到此错误。我正在执行以下步骤并遇到一些疯狂的错误。
git svn clone -s http://svn/java/project project
cd project
git svn show-ignore > .gitignore
git checkout -b dev
我得到以下outpput
M src/main/java/app.properties
M src/main/java/messages.properties
M src/main/java/org/xxxxx/enrollment/dao/projectDao.java
M src/main/resources/app.properties
M src/main/webapp/WEB-INF/flows/start/footer.jsp
M src/main/webapp/WEB-INF/flows/start/header_edit.jsp
M src/main/webapp/WEB-INF/flows/start/tobe.jsp
M src/main/webapp/WEB-INF/spring/mvc.xml
M src/main/webapp/index.jsp
M src/test/resources/app.properties
M src/test/resources/messages.properties
M src/test/resources/mvc.xml
Switched to a new branch 'dev
git svn rebase
我得到了这个输出
src/main/java/app.properties: needs update
src/main/java/messages.properties: needs update
src/main/java/org/xxxx/enrollment/dao/projectDao.java: needs update
src/main/resources/app.properties: needs update
src/main/webapp/WEB-INF/flows/start/footer.jsp: needs update
src/main/webapp/WEB-INF/flows/start/header_edit.jsp: needs update
src/main/webapp/WEB-INF/flows/start/tobe.jsp: needs update
src/main/webapp/WEB-INF/spring/mvc.xml: needs update
src/main/webapp/index.jsp: needs update
src/test/resources/app.properties: needs update
src/test/resources/messages.properties: needs update
src/test/resources/mvc.xml: needs update
update-index --refresh: command returned error: 1
请帮帮我
答案 0 :(得分:0)
mentioned作为twalberg并在issue 103中说明,请确保在克隆和重新定位之前键入:
git config --global core.autocrlf false
您不希望git自动更改任何内容(如“Error rebaseing/updating a git-svn
repository”)。