Eclipse 软件 解决:出现的 editor does not contain a main type 错误框 问题 当你运行 Java文件是,如果弹出了下面的 错误框: 出现错误的原因: 当前的源代码(所有的包)没有被添加到build path中:(src路径里面是文件目录的样子) 解决方法: 对着:src 路径右键 -> Build Path -> Use as Source Folder 现在,src路径 应该是下面这个样子的:(不再是文件目录的样子了,而是Java包的样子) 搞定,…
git pull --rebase时产生冲突 有三个选项: git rebase --skip 效果是:抛弃本地的commit,采用远程的commit(慎用因为你本地的修改就会都没有!) git rebase --abort 效果是:终止这次rebase git rebase --continue 当你修改完冲突的文件:执行git add .,最后git rebase --continue就可以解决完冲突并合并到分支上了.就可以push了.…
解决冲突 人生不如意之事十之八九,合并分支往往也不是一帆风顺的. 准备新的feature1分支,继续我们的新分支开发: $ git checkout -b feature1 Switched to a new branch 'feature1' 修改readme.txt最后一行,改为: Creating a new branch is quick AND simple. 在feature1分支上提交: $ git add readme.txt $ git commit -m "AND simpl…
在碰到maven install 发现报错 Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:3.2:compile (default-compile) on project autotest_fchtgl: Compilation failure [ERROR] No compiler is provided in this environment. Perhaps you are running on…
当使用git rebase碰到冲突时, git rebase <Remote Branch>/<Your Branch> 信息如下: error: Failed to merge in the changes. Patch failed at The copy of the patch that failed is found in: .git/rebase-apply/patch When you have resolved this problem, run "git…