我在我的git服务器上安装了ssl证书和密钥.但是当我尝试通过我的mysysgit中的https进行克隆时,我会收到错误.早些时候它与http工作得很好.无法确定失败的位置
$ git clone https://server.name/git/testing.git
Cloning into 'testing'...
* Couldn't find host server.name in the _netrc file; using defaults
* About to connect() to server.name port 443 (#0)
* Trying server.name...
* Adding handle: conn: 0x274fd60
* Adding handle: send: 0
* Adding handle: recv: 0
* Curl_addHandleToPipeline: length: 1
* - Conn 0 (0x274fd60) send_pipe: 1, recv_pipe: 0
* Connected to server.name(server.name) port 443 (#0)
* successfully set certificate verify locations:
* CAfile: C:\Users\user1\AppData\Local\Programs\Git/bin/curl-ca-bundle.crt
CApath: none
* SSL certificate …Run Code Online (Sandbox Code Playgroud) 我正在使用cvs2svn-2.4.0进行CVS到Git的迁移.这不包括.cvsignore到.gitignore转换.我怎么能把.cvsignore文件转换成.gitignore文件?
我正在尝试使用cvs2git将CVS repo迁移到Git.不幸的是我的cvs repo有许多分支与正则表达式.在执行git fast import(unix)时,它会报告下面的错误
fatal: Branch name doesn't conform to GIT standards: refs/tags/Release21_3_4_0_0_3_7_10[3_8_4_3]
fast-import: dumping crash report to .git/fast_import_crash_27083
Run Code Online (Sandbox Code Playgroud)
我试图删除这些标签,但没有运气.我认为这是整个历史.我也无法单独导入HEAD.
我该如何解决这个问题?