我的研究在ubuntu 14.04中使用Github。
现在,我创建了一个本地存储库,并希望在Github上创建一个存储库。但是,我无法解决这个问题。 我将本地库的所有内容都推送到远程存储库:
#include <stdio.h>
#define SIZE 20
char *strocat(char *s,char *d){
char *temp = s;
while(*s++ != '\0');
*--s;
while(*s++ = *d++);
*s = '\0';
return temp;
}
int main(){
char s[SIZE] = "source";
char d[SIZE] = "dest";
printf("%s\n",strocat(s,d));
return 0;
}
错误是:
git remote add origin git@github.com:XXX/learngit.git
git push -u origin master
感谢。
答案 0 :(得分:0)
您正在通过SSH推送,因此您需要为您的github acc添加SSH密钥(请参阅:https://help.github.com/articles/generating-ssh-keys/),或者您可以通过其他协议推送(请参阅:https://help.github.com/articles/which-remote-url-should-i-use/)。