文章列表
eclipse-git
- 博客分类:
- IDE
一、导入
右键-Import-Git-Projects from Git-Clone URI
输入克隆地址,输入user和password,选择Next;
注:第一次可勾选Store in Secure Store,以后就不需要输入user和password了。
选择分支,Next;
选择克隆的本地目录,Next;
二、拉取远程分支的最新代码
右键项目-Team-Pull
三、提交代码
右键项目-Team-Commit...(Commit Changes),输入描述信息,选择要提交的文件,点击Commit(可以直接点击Commit and Push,这里是为了说明Push Branch xxx) ...
maven[tomcat/jetty]
- 博客分类:
- IDE
Eclipse:
Base directory:${workspace_loc:project-name}
Goals:clean compile install -Dmaven.test.skip=true
Profiles:dev[对应pom.xml中的profile的ID]
User settings:自己选择
------------------------------------------------------------------------------
使用tomcat插件启动Web项目:
<pl ...