1、idea新建项目
注:空文件夹下应该新建一个空文件以占位(因为本地项目上传到远程仓库时,空文件夹会被过滤掉而无法上传到远程仓库)
2、为项目创建本地仓库
3、添加版本控制忽略文件过滤条件
4、新建项目远程仓库
5、打开命令行窗口cmd,转到项目所在目录,依次执行git命令
⑴ git remote add origin git@github.com:rupertw/yim.git (添加远程仓库)
⑵ git pull origin master (pull远程仓库master分支)
⑶ git branch --set-upstream-to origin/master master (本地仓库master分支关联远程仓库master分支)
6、回到idea,即可对远程仓库进行push、pull等操作