当我尝试克隆我的项目时,我发现问题的解决方案显示错误的用户/密码,但在尝试使用命令取消设置凭据时:
$("#gantt").kendoGantt({
dataSource: dataSource,
taskTemplate: $("#task-template").html(),
dataBound: function(e) {
var htmlElement = null;
e.sender.dataSource.taskTree().forEach(function( taskObject ){
htmlElement = $(".k-task[data-uid="+taskObject.uid+"]");
if( htmlElement.find("[data-bind]").get(0).kendoBindingTarget === undefined ){
// bind unless previously bound
kendo.bind( htmlElement, taskObject );
}
});
}
});
错误存在:
git config --system --unset credential.helper
答案 0 :(得分:1)
类似to this comment,尝试并重新启动" C:\ Program Files \ Git \ git-bash.exe"作为管理员。
这应该允许你修改系统git配置文件。