2
我正在爲gerrit創建本地存儲庫。gerrit錯誤:Nonetype對象沒有屬性拆分
,當我執行命令:
git-review -s
它給我的錯誤是:
branch_parts = branch_name.split("/")
AttributeError: 'NoneType' object has no attribute 'split'
任何人都可以讓我知道如何解決這個一樣嗎?
我正在爲gerrit創建本地存儲庫。gerrit錯誤:Nonetype對象沒有屬性拆分
,當我執行命令:
git-review -s
它給我的錯誤是:
branch_parts = branch_name.split("/")
AttributeError: 'NoneType' object has no attribute 'split'
任何人都可以讓我知道如何解決這個一樣嗎?
出現這種情況,如果你的價值是None
In [119]: branch_name = None
In [120]: branch_parts = branch_name.split("/")
---------------------------------------------------------------------------
AttributeError Traceback (most recent call last)
/home/avasal/<ipython console> in <module>()
AttributeError: 'NoneType' object has no attribute 'split'
在branch_name
確保值如預期
錯誤說'branch_name = None'。你有沒有給你的分支命名? – Blender 2012-04-13 05:54:32
實際上我第一次使用它,所以我沒有想法如何創建它。你能幫我嗎 ? – sam 2012-04-13 05:55:49