Why am I getting this error trying to use git with svn. I am doing the following steps and getting some crazy errors.
git svn clone -s http://svn/java/project project
cd project
git svn show-ignore > .gitignore
git checkout -b dev
I get the following 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
I get this output
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
please help me