git在webstorm中的使用

打开webstorm新建项目,这里新建的项目名称我起为lianxi

git在webstorm中的使用

打开设置选项里的插件栏

git在webstorm中的使用

git在webstorm中的使用

搜索gitignore,并安装,我这里已安装,所以显示X,没有安装的会显示一个绿色的下载箭头。安装完后需要重启webstorm。

没有安装过的请点击下面的Borwse repositorise...在新弹出的窗口中搜索安装安装!

在项目根目录新建.gitinore文件,内容如下:

# Eclipse project files
.classpath
.project
.settings/ # Intellij project files
*.iml
.idea/
bower_components/ # Others
target/
logs/

git在webstorm中的使用

主要作用是控制不需要版本控制的文件不上传到git

在新建一点其他文件用于测试,我这里新建了一个index.html文件。

git在webstorm中的使用

之后再http://git.oschina.net/网站上新建自己账号,这是中国git项目托管网站,跟gitHub是一样的,只不过是访问方便些。

git在webstorm中的使用

注册后登陆

进去后点击左上角的加号图标新建一个空的项目

git在webstorm中的使用

写上你的项目名称后点击创建项目

git在webstorm中的使用

点击后会看到如下界面,先不要关,一会会用到下面的一些命令:

git在webstorm中的使用

之后回到webstorm单击VCS-》enable Version...

git在webstorm中的使用

在下来列表中选择git后ok

git在webstorm中的使用

点击底窗口中的CHanges,把需要进行git的文件用鼠标拽到Default下:

git在webstorm中的使用

现在打开git Bash控制台(我这里用的是win7操作系统),进入到项目根目录:

git在webstorm中的使用

输入刚才你新建完项目的页面上的命令:

git在webstorm中的使用

之后再输入

git在webstorm中的使用

如下所示

git在webstorm中的使用

之后点击左侧的VCS带绿色的上传标准的按钮:

git在webstorm中的使用

在Commit Message写上相应的备注信息

git在webstorm中的使用

之后点击Commit的第二项上传到Git

git在webstorm中的使用

单击Push

显示如下说明在上传中:

git在webstorm中的使用

上传后

git在webstorm中的使用

之后刷新我们的项目网页就能看见我们上传的项目文件了

git在webstorm中的使用

这里附上webstorm的代码格式化快捷键:

centOS 下webstorm 格式化代码的快捷键 Ctrl+Shift+l

windows 下 webstorm 格式化代码的快键键 Ctrl+Alt+l

mac 下 webstorm 格式化代码的快捷键 Option+Command+l

补充:

1.git提交:

点击Changes窗口中的vcs:

git在webstorm中的使用

单击Commit中的第二个:

git在webstorm中的使用

单击第二个Commit按钮:

git在webstorm中的使用

单击Push按钮

git在webstorm中的使用

这时就提交到git上了,有时会有错误框弹出,单击第三个按钮忽略掉即可

git在webstorm中的使用

此时可以查看Changes窗口上面的log栏:如果那三个不同颜色在同一行说明提交成功,如果不在一行按下面那张图在上交一下,至于原因请百度git的工作区与暂存区知识点!

git在webstorm中的使用

git在webstorm中的使用

这是就可以上你的git网站上查看文件已经在你的git项目上了!

转载请注明出处:http://www.cnblogs.com/woleicom/p/4117963.html

上一篇:maven学习--1.安装与配置


下一篇:现代交换技术——SDN一瞥