zoukankan      html  css  js  c++  java
  • linux环境下配置github远程仓库

    1.设置git用户和邮箱

    git config --global user.name "fujinzhou"
    git config --global user.email "1445675350@qq.com"
    

    2.生成SSH密钥

    ssh-keygen -t rsa		//直接敲3次回车,默认key放在/root/.ssh/下
    3.在github上添加ssh密钥
    cat /root/.ssh/id_rsa.pub //复制到github上(Settings-->SSH andGPG keys-->New SSH key),title随意
    

    4.测试认证是否成功

    [root@localhost data]# ssh -T git@github.com
    The authenticity of host 'github.com (192.30.253.113)' can't be established.
    RSA key fingerprint is 16:27:ac:a5:76:28:2d:36:63:1b:56:4d:eb:df:a6:48.
    Are you sure you want to continue connecting (yes/no)? yes
    Warning: Permanently added 'github.com,192.30.253.113' (RSA) to the list of known hosts.
    Hi fujinzhou! You've successfully authenticated, but GitHub does not provide shell access.
    

      

    5.克隆代码
    git clone ssh://git@github.com/51reboot/actual-10-homework.git
    git pull origin master 从git 拉代码
    

      

    git常用命令

    查看工作状态、
    git status
    提交所有代码
    git add . 
    本地提交
    git commit -m "test"
    提交到远程
    git push origin master
    

      

  • 相关阅读:
    【.NET】网络编程总结
    【C#】修饰符
    【C#】HTTP请求GET,POST
    【C#】事件总结
    【.NET】使用HtmlAgilityPack抓取网页数据
    JAVA开发者最常去的25个英文网站
    java 注解:SuppressWarnings、Deprecated、Override
    android apk如何入门
    网盘推荐
    反射
  • 原文地址:https://www.cnblogs.com/fujinzhou/p/5691959.html
Copyright © 2011-2022 走看看