1
我想使用ac2git將我的Accurev倉庫轉換爲Git倉庫。我遵循這裏給出的步驟:https://github.com/NavicoOS/ac2git。試圖運行蟒蛇ac2git.py命令時,我收到此錯誤,操作中止:Ac2git給屬性錯誤
2016-08-24 09:07:31,312 - ac2git - ERROR - The script has encountered an exception, aborting!
Traceback (most recent call last):
File "ac2git.py", line 3596, in AccuRev2GitMain
rv = state.Start(isRestart=args.restart, isSoftRestart=args.softRestart)
File "ac2git.py", line 2974, in Start
self.RetrieveStreams()
File "ac2git.py", line 1537, in RetrieveStreams
endTr = endTrHist.transactions[0]
AttributeError: 'NoneType' object has no attribute 'transactions'
我使用的方法爲深HIST和start_tran爲1和end_tran爲「現在」。 我經歷了accurev的歷史,在#1有一個事務,那麼錯誤所指的「NoneType」是什麼?
ac2git.config.xml
<accurev
username="********"
password="********"
depot="Product"
start-transaction="1"
end-transaction="now"
command-cache-filename="command_cache.sqlite3" >
<!-- The stream-list is optional. If not given all streams are processed -->
<!-- The branch-name attribute is also optional for each stream element. If provided it specifies the git branch name to which the stream will be mapped. -->
<stream-list>
<stream>Stage1</stream>
</stream-list>
</accurev>
<git
repo-path="C:\Users\ssrivastava\repository"
message-style="notes"
message-key="footer"
author-is-committer="true"
empty-child-stream-action="merge"
source-stream-fast-forward="false" >
<!-- Optional: You can add remote elements to specify the remotes to which the converted branches will be pushed. The push-url attribute is optional. -->
<remote name="origin" url="https://github.com/orao/ac2git.git" push-url="https://github.com/orao/ac2git.git" />
<remote name="backup" url="https://github.com/orao/ac2git.git" />
</git>
<method>deep-hist</method>
<merge-strategy>normal</merge-strategy>
<logfile>accurev2git.log</logfile>
<usermaps filename="usermaps.config.xml">
<map-user><accurev username="******"/><git name="Shruti Srivastava" email="******" timezone="+0500"/></map-user>
</usermaps>
</accurev2git>
您正在使用哪個版本的Python有一個錯字? (支持遷移到一個好的VCS) – Av4t4r
我使用的是3.4.3版本。 –
我想你應該在這裏發佈配置文件和傳遞給工具的參數 – Av4t4r