一、 新建代码库

在github上面新建一个代码仓库

二、 新建SSH公钥

  1. 生成key

    1
    2
    3
    ssh-keygen -t rsa -C "你的邮箱" # 1.创建ssh key
    cat ~/.ssh/id_rsa.pub # 2.查看key
    # 3.复制一下key
  2. 在代码库中添加ssh配置

    img.png

    img_1.png

    img_2.png

    key 就是你复制的key
    Title 随便填写

  3. 验证是否成功

    1
    ssh -T git@github.com

    成功则显示:Hi zzhao8053! You've successfully authenticated, but GitHub does not provide shell access.

推送代码

1
2
3
4
5
git init
git remote add origin "git@github.com:zzhao8053/blog.git"
git add --all
git commit -m "commit_message"
git push / git push -f origin <branch>