标签:style http io os sp 数据 on bs ad
在intellij IDEA中 VCS——Import into Version Control——Create Git Repository——选择你的本地项目
然后cmd进入到你的项目根目录(需要把git配置到环境变量中)
依次输入以下命令:
# 给项目设置远程远程仓库 #
git remote add origin https://coding.net/FuYung/****.git
# 抓取远程仓库数据,并自动合并远程分支
#git pull origin master
# 把本地项目推送到远程Git仓库 #
git push origin master
然后就可以在intellij IDEA中进行update、commit、push了。
标签:style http io os sp 数据 on bs ad
原文地址:http://my.oschina.net/fuyung/blog/341272