一、eclipse配置git密钥
1、首先需要在本地生成RSA密钥对。以windows系统为例,打开git bash,输入以下命令:
$ ssh-keygen -t rsa -C "your_email@example.com"
2、一路回车即可,直到密钥对生成完成。
3、打开公钥,复制粘贴到gitlab或github的设置页面中的SSH密钥管理中。
4、在eclipse中配置ssh,打开Window --> Preferences --> General --> Network Connections --> SSH2。
5、点击Key Management,选择加载私钥,选择刚才生成的密钥。
二、eclipse配置git远程仓库
1、创建一个git本地仓库,如:
$ git init
2、将本地仓库与远程仓库关联,如:
$ git remote add origin git@github.com:username/repo.git
三、eclipse配置gitlab密钥
1、打开git bash,输入以下命令,生成RSA密钥:
$ ssh-keygen -t rsa -C "your_email@example.com"
2、打开gitlab个人设置中的SSH密钥管理,将复制生成的公钥。
3、打开eclipse的Window --> Preferences --> General --> Network Connections --> SSH2,点击Key Management,选择加载私钥,选择刚才生成的密钥文件。
四、eclipse配置git信息
1、打开eclipse的Window --> Preferences --> Team --> Git --> Configuration。
2、点击"Add Entry"按钮,添加user.name和user.email配置项,分别对应git提交信息中的用户名和邮箱。
user.name = your_name user.email = your_email@example.com
五、eclipse配置git帐号密码
1、在eclipse中打开某个git项目,在右侧的"Git Repositories"面板中,右键选择"Properties"。
2、在弹出的窗口中,选择"Configuration"选项卡,点击"Add Entry"按钮。
3、填写credential.helper为store,这样eclipse就会在本地保存密码。
credential.helper = store
六、eclipse配置git ssh
1、在eclipse中打开"Window" --> "Preferences" --> "General" --> "Network Connections" --> "SSH2",选择"SSH2 Home",输入git bash安装路径下的.ssh文件夹路径即可。
七、eclipse配置git提交代码
1、在eclipse提交代码时,右键选择"Team" --> "Commit"。
2、在弹出的窗口中,填写commit信息并选择修改的文件,点击"Commit"按钮,即可提交修改到本地仓库中。
3、若要将本地仓库中的修改推送到远程仓库,可右键选择"Team" --> "Push to Upstream"。
八、eclipse配置git提交免密
1、在本地git bash中执行以下命令,将用户名和邮箱配置到全局环境变量中:
$ git config --global user.name "your_name" $ git config --global user.email "your_email@example.com"
2、在eclipse中打开"Window" --> "Preferences" --> "General" --> "Network Connections" --> "SSH2",选择"Key Management",将刚才生成并添加的密钥设置为默认即可。
九、eclipse配置gitignore文件
1、在项目根目录下创建.gitignore文件,指定需要忽略的文件或文件夹,如:
# 忽略的文件或文件夹 target/ .DS_Store
2、Eclipse会自动识别gitignore文件并过滤忽略的文件。
十、eclipse配置tomcat
1、在eclipse中打开"Window" --> "Preferences" --> "Server" --> "Runtime Environments",添加Tomcat Runtime即可指定Tomcat版本。
2、在项目中,右键选择"Properties" --> "Targeted Runtimes",选择刚才添加的Tomcat Runtime即可。
3、右键选择项目,选择"Run As" --> "Run on Server",即可运行项目。