Git系统学习记录(三) --github远程仓库

Git系统学习记录(三)

远程仓库

github远程仓库

注册github账号,在github创建仓库,添加SSH Key,即可接通。

本地申请sshKey
    运行: ssh-keygen -t rsa -C "[email protected]";

            vim /root/.ssh/id_rsa.pub

            将内容复制到github创建ssh连接。

测试是否连通:
    ssh -T [email protected]
        如果出现You’ve successfully authenticated, but GitHub does not provide shell access 。这就表示已成功连上github。

添加以及关联远程库
    github创建仓库
    创建完成后github会给出提示,分几种情况如何建库。

    本地版本库的内容推送到远程库
    git push -u origin master
    注意:第一次的推送的时候需要参数-u,然后推动直接就是git push origin master

从远程库克隆
    git clone [github(url)];

远程仓库拉取最新代码
    git pull origin master  

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