【发布时间】:2013-02-12 21:39:23
【问题描述】:
为什么我在尝试将 git 与 svn 一起使用时会出现此错误。我正在执行以下步骤并遇到一些疯狂的错误。
git svn clone -s http://svn/java/project project
cd project
git svn show-ignore > .gitignore
git checkout -b dev
我得到以下输出
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
请帮帮我
【问题讨论】:
-
在您尝试创建新分支之前,
git status在“master”中说了什么? -
您是否处于混合操作系统开发环境中,其中不同的用户可能使用具有不同行尾约定的系统(Windows、Linux 和 MacOS)?