目录
第一次新建仓库,并上传
https://www.cnblogs.com/specter45/p/github.html
git bash:cd :too many command
这个错误,把路径的反斜杠改了
文件路径要换成双斜杠
仓库删除
https://blog.youkuaiyun.com/weixin_41637749/article/details/83791535
在 setting 还可以改名字等
再次上传
第一次已经设置好了 ssh key,不用在弄了
新建仓库,直接看https://www.cnblogs.com/specter45/p/github.html 中的 四、上传本地项目到github
- 打开 git bash.exe 切换到项目目录
- git init
- git add .
- git commit -m "提交文件" 双引号是注释
- git remote add origin 仓库地址
- git push -u origin master
即新上传了一个项目
提交,修改以上传的项目
打开 git bash.exe 切换到项目目录
git add .
git commit -m "提交test1.html"
git push -u origin master
pycharm 上传项目
不用在 github 先创建好项目
https://www.cnblogs.com/dongxixi/p/10981981.html
再次提交修改,或增加文件
https://www.jianshu.com/p/94aafbe82dc7
右上角绿色的 √ ,commit,后还需要 push
github 删除某个文件
https://blog.youkuaiyun.com/weixin_42152081/article/details/80635777