github上传工程

1、生成ssh

ssh-keygen -t rsa -C email(注册github的email)

默认生成在~/.ssh

在github,�点击头像 Settings -> SSH Keys,
将~/.ssh/id_rsa.pub文件内容拷贝进来,title填写email

2、测试跟github连接

ssh -T git@github.com

3、配置config
config文件在~/.gitconfig。
可以用命令行来设置

git config --global user.name "your name"
git config --global user.email "your_email@youremail.com"

4、在github上创建repository

5、本地仓库与远程建立连接

cd projectdir
git init
// 将所有文件add
git add .
git commit -m "first commit"
// 添加远程仓库地址
git remote add origin https://github.com/silan-liu/buttonEdgeInset.git
git push -u origin master

在push的时候,可能会提示,先pull,则先执行git pull origin master。

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。

推荐阅读更多精彩内容