我已经尝试解决这个问题,但到目前为止还没有成功。我正在使用git-tfs签入我对 TFS 的更改(本地使用 GIT 存储库)
我读过这个问题,它简要描述了您可以使用元数据在提交消息中关联工作项(执行 git tfs rcheckin 时出现 TF26198 错误)。我尝试使用的命令:
1)
git tfs checkin -m "Changes to workitem #12345" => doesn't associate changeset to TFS workitem
2)
git tfs rcheckin -w12345 -m "Changes to workitem 12345" => triggers error "error: This syntax with one parameter is only allowed in bare repository."
3)
git tfs checkin -w12345 -m "Changes to workitem 12345" => triggers error No TFS parents found
4)
git tfs checkin -m "Changes to workitem #12345" => doesn't associate work item
关于我做错了什么的任何想法?
谢谢,尤利亚