codecamp

添加远程库篇(四)

如果你只是想自己一个人本地玩转天下,那接下来教程应该不适合你。

因为我们是团队team~~~

链接Github官网,让自己的代码上传到线上,与其他队友进行修改

在Github新建版本库

添加远程

git remote add origin git@github.com:michaelliao/learngit.git

在Github官网新建一个版本库

当你新建完之后,当前目录是还没有东西的~~ ,这个时候,就得用到Git工具了(几个小时没有讲到Git了,好怀念阿~)

添加远程

git remote add origin git@github.com:michaelliao/learngit.git

打入进去没有报什么错误的话,那就没有什么事情发生~

远程仓库篇(三)
提交到Github远程篇(五)
温馨提示
下载编程狮App,免费阅读超1000+编程语言教程
取消
确定
目录

关闭

MIP.setData({ 'pageTheme' : getCookie('pageTheme') || {'day':true, 'night':false}, 'pageFontSize' : getCookie('pageFontSize') || 20 }); MIP.watch('pageTheme', function(newValue){ setCookie('pageTheme', JSON.stringify(newValue)) }); MIP.watch('pageFontSize', function(newValue){ setCookie('pageFontSize', newValue) }); function setCookie(name, value){ var days = 1; var exp = new Date(); exp.setTime(exp.getTime() + days*24*60*60*1000); document.cookie = name + '=' + value + ';expires=' + exp.toUTCString(); } function getCookie(name){ var reg = new RegExp('(^| )' + name + '=([^;]*)(;|$)'); return document.cookie.match(reg) ? JSON.parse(document.cookie.match(reg)[2]) : null; }