前提:新开项目,需要在 [email protected] 建立版本库管理。
1.当然是先在[email protected]上创建仓库,拿到[email protected]仓库的HTTP连接 https://git.oschina.net/*****/***.git
2.如果我们的本地项目是非git项目,那我们要先把它变成git项目
在 idea 中 VCS——Import into Version Control——Create Git Repository——选择你的本地项目
3.通过 git shell (可以安装 git for window) 进入到项目目录 执行 以下命令
# 给项目设置远程远程仓库 # git remote add origin http://git.oschina.net/*****/***.git # 抓取远程仓库数据,并自动合并远程分支 # git pull origin master # 更新本地数据到[email protected] # git push origin master # 解决不能更新的问题 git branch --set-upstream-to master origin/master # 删除项目 git 信息 git remote rm origin
如果 pull 或者 push 失败 请参考 git 提示进行解决,参考博客:http://blog.csdn.net/dengjianqiang2011/article/details/9260435
如果上述操作出现各种各样莫名其妙的问题,而且在网上找不到像样解决的方法,还有一种方式:
1.在本地新建一个文件夹,将 [email protected] 上面的项目 clone 到该文件夹下;
2.将项目源码剪切到该目录 git push ,然后导入到 IDEA 或者其他开发工具 中。
时间: 2024-10-06 00:31:09