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
posted @ 2019-11-08 00:13  LQ6H  阅读(117)  评论(0编辑  收藏  举报