1

svn で git を使用しようとすると、このエラーが発生するのはなぜですか? 次の手順を実行していますが、クレイジーなエラーが発生します。

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

私を助けてください

4

1 に答える 1

0

twalbergが言及し、 issue 103で説明されているように、クローンとリベースの前に、必ず次のように入力してください。

git config --global core.autocrlf false

git が自動的に何かを変更することは望ましくありません (「リポジトリのリベース/更新エラーgit-svn」のように)。

于 2013-02-12T06:55:16.883 に答える