将本地 项目文件托管到 github
Posted Ghost4C
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了将本地 项目文件托管到 github相关的知识,希望对你有一定的参考价值。
1.新建一个本地 repository文件夹
2.将想要 托管的项目或文件 复制到repository 文件夹下
2. 右键 git bash here 输入命令 git init 生成本地仓库
4..输入 git add . (添加所有文件)
5.输入 git status -s 查看文件添加状态
6.输入 git commit -m "say something"(双引号 中内容任意)
7.输入 git remote add origin url(相应仓库的 ssh)
8.输入 git push -u origin master
以上是关于将本地 项目文件托管到 github的主要内容,如果未能解决你的问题,请参考以下文章