function showImg(url) {
var frameid = ‘frameimg’ + Math.random();
window.img = ‘window.onload = function() { parent.document.getElementById(” + frameid + ”).height = document.getElementById(‘img’).height+’px’; }’;
document.write(”);
}
导语
laravel 的项目代码已经搭建好了,今天使用 git 把代码上传到 GitHub。有两个前提,一是有 GitHub 账号;二是 Linux 安装了 git,使用 yum -y install git 安装就可以。
创建项目
在 GitHub 的页面中,点击下图中红框的位置创建新项目
showImg(‘https://segmentfault.com/img/remote/1460000018595515’);
然后填写项目名称、简介等
showImg(‘https://segmentfault.com/img/remote/1460000018595516’);
最后点击下方按钮即创建完成。
Linux 配置 git
接下来在 Linux 中,先设置 git 用户的姓名和邮箱,使用 git config –global user.name ‘username’ 和 git config –global user.email ‘youEmail’ 来全局配置。
然后切换到项目代码目录,使用 git init 初始化
showImg(‘https://segmentfault.com/img/remote/1460000018595517’);
与 GitHub 建立连接
继续在 Linux 中执行 ssh-keygen -t rsa -C “gitHubEmail”,参数中的邮箱,是在 GitHub 注册时候使用的邮箱。确认后会提示输入密码,直接回车表示不设置密码。然后会提示你成功。根据提示信息,复制 id_rsa.pub 文件中的内容。
接着打开 GitHub 的 Settings
showImg(‘https://segmentfault.com/img/remote/1460000018595518’);
如下图点击按钮
showImg(‘https://segmentfault.com/img/remote/1460000018595519’);
title 可以随意填写,key 中填写在 id_rsa.pub 复制的内容
showImg(‘https://segmentfault.com/img/remote/1460000018595520’);
好了,添加完成之后,回到 Linux。输入 ssh -T git@github.com 进行测试,如果返回 You’ve successfully authenticated, but GitHub does not provide shell access 语句说明连接成功。
提交代码
最后就是提交代码。其实在 GitHub 创建项目成功后,有提示如何上传代码
showImg(‘https://segmentfault.com/img/remote/1460000018595521’);
那么,就按照它的提示进行操作就行下修改,依次输入 git add -A 、git commit -m ‘init’ 、git remote add origin https://github.com/haoyq02/laravel-haoyq.git 、git push -u origin master ,最后要求输入 GitHub 的账号和密码。
这个时候,去 GitHub 中查看一下,代码应该已经提交成功。
参考资料:廖雪峰 git 教程、使用Git上传项目代码到github。