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 [email protected]

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

git config --global user.name "your name"
git config --global user.email "[email protected]"

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。

你可能感兴趣的:(github上传工程)