将本地工程推送到github
2019-08-01 本文已影响2人
赵阳_c149
- github上新建repo
登录github,点击右上角账户图标(菜单),点击Repositories。新建repo,点击“clone or download”,得到repo的url:https://github.com/${user}/xxxx.git。 - 配置客户端与git服务器ssh免交互认证
点击右上角账户图标(菜单),点击“settings”,点击”SSH and GPG keys“。在本地机器上生成ssh keys,将你的SSH key 加入github的ssh-agent【1】。 - 在本地建立目录并初始化
mkdir your_project
cd your_project
git init
- 添加远程repo【2】
git remote add origin https://github.com/${user}/xxxx.git
- 提交文件
touch README.md
git add README.md
git commit -m "first commit"
git push -u origin master
【1】generating-a-new-ssh-key-and-adding-it-to-the-ssh-agent
【2】adding-a-remote