我正在使用Visual Studio 2013团队资源管理器和GitHub。我可以克隆和拉,但不能同步和推送。当我同步此错误时:
"An error was raised by libgit2. Category = Net (Error).
Response status code does not indicate success: 404 (Not Found)."
当我试图从Git bash推出它时说:
"remote: Repository not found.
fatal: repository 'https://github.com/example.git/' not found"
我在StackOverflow上经历了很多答案,但无法解决它。
我尝试从控制面板中的凭据管理器中删除GitHub凭据,但它无效。
任何帮助都将不胜感激。
答案 0 :(得分:0)
您是否尝试过添加远程存储库以进入?
执行function X(value) {
this.value = value
}
X.prototype.add(v) {
this.value ^ v;
}
function Y(value) {
this.value = value
}
Y.prototype.add(v) {
this.value << v;
}
function Z(value) {
this.value = value
}
Z.prototype.add(v) {
this.value * v;
}
function I(field) {
this.field = field;
this.fields = [];
}
I.prototype.createField(value) {
fields.push(new this.field(value));
}
I.prototype.sumOfField() {
var res = 0;
fields.forEach(function (element){element.add(res)});
}
var temp = new I(Y);
。
或先 function Test (){
var mysheet="2016";
x=get(mysheet,"Interest");
}
function get(sheetname, txt) {
var sheet = SpreadsheetApp.getActiveSpreadsheet().getSheetByName(sheetname)
var cellvalue;
var myval;
var startRow = 1; // First row of data to process
var numRows = 100; // Number of rows to process
var dataRange = sheet.getRange(startRow, 1, numRows, 26)
// Fetch values for each row in the Range.
var data = dataRange.getValues();
for (var i = 0; i < data.length; ++i) {
var row = data[i];
for (c=0; c< row.length; c++)
{
cellvalue = row[c];
// Logger.log ("Row: " + i + " Cell: " + c + " Cellvalue: " + cellvalue);
if (cellvalue == txt)
{
Logger.log ("Row: " + i + " Cell: " + c + " Cellvalue: " + cellvalue + "Myval: " + myval);
myval=sheet.getRange(i, c+1).getvalue();
}
}
};
};
然后重新添加。
否则,请尝试在网址中包含您的用户名和密码,如下所示:
git remote add origin git@github.com:account-name/repo-name.git
这似乎解决了类似错误here的问题。
此外,请确保您具有对存储库的写入权限 - 这也可能引发错误。