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
原文地址:https://www.cnblogs.com/Ghost4C-QH/p/8778275.html
时间: 2024-10-22 09:49:59