2015年7月1日星期三

[方法整理] GitHub上分享代码

1. 配置Git

https://help.github.com/articles/set-up-git/
这个链接写的很详细,安装程序,配置邮箱

2. Generating SSH keys

按照这个链接: https://help.github.com/articles/generating-ssh-keys/
生成SSH keys,把SSH keys加到账户里面去,测试。

3. Create a new Repository

没什么好说的

4. 项目上传

在 terminal 里面切换到需要上传的文件的目录,输入以下指令(其中XXX是GitHub的账号,YYY是刚刚新建的repository的名字):
echo "# test" >> README.md
git init
git add .
git commit -m "first commit"
git remote add origin git@github.com:XXX/YYY.git
git push -u origin master

没有评论:

发表评论