第一次项目提交
git下载
可能需要
git config --global user.email “1101293857@qq.com”
git config --global user.name “laiyuhua”
1.创建一个文件夹
git bash here
2.git init
3.把想要上传的文件加进去 git add .
tips:如果加入的文件中有.git文件需要删掉 不然会识别为子模块 github上面打不开
4.git commit -m “first commit”
5. git remote add origin https://github.com/1101293857/CMU-15445.git
6. git push -u origin master
重新提交
**1.git clone **
2.进入clone的文件夹
3.git add .
4.git commit
5.git push
Probelom:
1.fatal unable to access ‘https://github.com/1101293857/CMU-15445.git/’: Failed to connect to github.com port 443 after 21088 ms: Couldn’t connect to server
解决方法:
git中:
- git config --global --unset http.proxy
- git config --global --unset https.proxy
cmd中:ipconfig/flushdns
tips
tips:如果加入的文件中有.git文件需要删掉 不然会识别为子模块 github上面打不开。