Push an existing folder
新项目
cd 父工程
初始化
git init
提交到指定的路径
git remote add origin http://192.168.1.155:82/springcloud-pro/springcloud-parent.git
提交所有
git add .
提交版本描述
git commit -m "Initial commit"
提交
git push -u origin master
老项目上传…
Push an existing Git repository
cd existing_repo
git remote rename origin old-origin
git remote add origin http://192.168.1.155:82/springcloud-pro/springcloud-parent.git
git push -u origin --all
git push -u origin --tags
//解决本地与远程关联问题
解决方案如下:
1.切换到自己项目所在的目录,右键选择GIT BASH Here,Idea中可使用Alt+F12
2.在terminl窗口中依次输入命令:
git pull
git pull origin master
git pull origin master --allow-unrelated-histories