Illegal character in path with Git Submodules
症状
After making changes to the .gitmodules
file, the following appears in the atlassian-bitbucket.log
:
2014-09-03 10:49:12,833 ERROR [http-bio-7990-exec-45624] tiecimov @SCSPXTx649x2753980x1 1dxhfwc 10.4.148.55,10.100.5.155 "GET /projects/MCU32_REPOS/repos/p015_platform_alta/browse/mod HTTP/1.1" c.a.s.i.w.HandlerExceptionResolverImpl An error occurred while executing an external process: Illegal character in path at index 33: ../../folder/file.git
track = master
com.atlassian.bitbucket.exception.ServerException: An error occurred while executing an external process: Illegal character in path at index 33: ../../folder/file.git
track = master
at com.atlassian.bitbucket.scm.git.common.command.GitCommandExitHandler.evaluateThrowable(GitCommandExitHandler.java:104) ~[na:na]
原因
This is caused by the line endings of the .gitmodules
file not being in the correct format and is likely because Windows style line endings were committed to the repository.
ソリューション
Use
dos2unix
to convert the line endings to the correct format:dos2unix .gitmodules
- Commit the file and push it back to the Bitbucket Server instance.
最終更新日 2019 年 9 月 20 日
Powered by Confluence and Scroll Viewport.