• Git 提交文件到Github


    Git 提交文件到Github

    一.用户名和邮箱

    git config --global user.name "xxxx"
    git config --global user.email "xxxx@xxxx.com"
    

    二.设置SSH key

    ssh-keygen -t rsa -C "xxxx@xxxx.com"
    

    三.文件准备

    1.初始化,完成后生成一个隐藏的文件夹.git

    git init
    

    2.文件范围添加

    git add .           // 添加当前文件夹下的所有文件
    git add **.txt      // 添加当前文件夹下的txt文件
    

    3.文件描述

    git commit -m "描述"
    

    四.关联github仓库

    1.关联仓库

    git remote add origin https://github.com/LQ6H/spider.git
    

    注意:如果出现错误
    image.png

    执行以下语句:

    git remote rm origin
    

    再重新执行:

    git remote add origin https://github.com/LQ6H/spider.git
    

    2.上传

    git push origin master
    
  • 相关阅读:
    ubuntu
    eclipse 链接 hadoop
    javaweb访问hdfs的一些错误
    eclipse
    ubuntu
    ubuntu
    ubuntu
    ubuntu 安装 mysql
    光源选择
    C#脱离Halcon编程开发环境使用方法
  • 原文地址:https://www.cnblogs.com/LQ6H/p/12940564.html
Copyright © 2020-2023  润新知