git&github

环境

debian8.1
github帐户一个
ssh一个
git 一个

安装

  • 装入两个必须的软件
    sudo apt install ssh git

步骤

1. git的简单用法

简单构成:当前 --> 缓冲区 --> 仓库

  • 创建
  • 回溯

2. 连接远程仓库

  • 生成公钥
    ssh-keygen -t rsa -C "[email protected]"
  • 添加入github的信任表
    cd ~/.ssh
    将id_rsa.pub中的公钥添加到github中的https://github.com/settings/keys
  • 完成

你可能感兴趣的:(git&github)