Git 命令将电脑上的文件上传到 Github
Posted gaodi2345
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Git 命令将电脑上的文件上传到 Github相关的知识,希望对你有一定的参考价值。
1、在电脑上安装 Windows 版 Git
下载地址:https://git-scm.com/downloads
2、使用 Git GUI 生成 SSH Key
3、将 SSH Key 添加到 Github
4、在电脑上创建文件夹,使用 Git Shell 初始化
git init
git remote add origin git@github.com:huhaiqng/Oracle.git
5、拉文件
git pull git@github.com:huhaiqng/Oracle.git
6、将新增修改的文件上传
git add . git commit -m "提交" git push -u origin master
以上是关于Git 命令将电脑上的文件上传到 Github的主要内容,如果未能解决你的问题,请参考以下文章
使用 vscode将本地项目上传到github从github克隆项目以及删除github上的某个文件夹