在Mac的git桌面更新子模块

时间:2016-06-11 09:13:05

标签: git

我是git的新手。在存储库中,我在子模块中修改了文件var tablo = { tablo_id: 0, retrivedData: 1234, getData: function() { var xhr; var data = "aranan=" + document.getElementById('aranan').value; if (window.XMLHttpRequest) { xhr = new XMLHttpRequest(); } else if (window.ActiveXObject) { xhr = new ActiveXObject("Microsoft.XMLHTTP"); xhr.onreadystatechange = function() { if (xhr.readyState == 4 && xhr.status == 200) { this.retrivedData = JSON.parse(xhr.responseText); console.log(this.retrivedData); //first } } xhr.open("POST", "listele.php", true); xhr.setRequestHeader("Content-type", "application/x-www-form-urlencoded"); xhr.send(data); }, setData: function() { console.log(this.retrivedData); //Second } } } function u() { tablo.getData(); tablo.setData(); } ,现在我需要将其上传到github。但是,当我点击“#34;承诺掌握"”时,我遇到了以下问题: enter image description here

任何人都可以帮我解决这个问题吗?

1 个答案:

答案 0 :(得分:0)

您需要先进行更改。

不确定GUI,但在CLI中你会添加子模块:

git add <submodule_name>