解除git管理:https://blog.csdn.net/Alex_81D/article/details/80392935
file ->settings->version control 选中这一栏,右边有个
点红色减号,就解除了,然后去项目目录下删除.git这个文件夹,你可以不删除,为了以后继续关联。
非空目录下clone远程仓库:https://www.oschina.net/question/54100_167919?sort=time
如果我们往一个非空的目录下 clone git 项目,就会提示错误信息:
fatal: destination path '.' already exists and is not an empty directory.
解决的办法是:
1. 进入非空目录,假设是 /workdir/proj1
2. git clone --no-checkout https://git.oschina.net/NextApp/platform.git tmp
3. mv tmp/.git . #将 tmp 目录下的 .git 目录移到当前目录
4. rmdir tmp
5. git reset --hard HEAD
然后就可以进行各种正常操作了。
已存在项目添加git管理:https://www.cnblogs.com/rongguang/p/5516300.html
首先,我们解决的情况是,已经有了一个正在开发的项目,现在我们要把他分享到[email protected]上面去。
1.第一步,当然是先在[email protected]上创建仓库,拿到[email protected]仓库的HTTP连接http://git.oschina.net***.git
2.如果我们的本地项目是非git项目,那我们要先把它变成git项目
在intellij中 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