mvn:
打包: mvn package
如果想在打包的时候跳过测试: mvn package -Dmaven.test.skip=true
使用的junit测试框架,
测试: mvn test
如果只想测试某一个类: mvn test -Dtest=ClassName
postgres:
登录: psql DatabaseName -h hostIP -U userName
成功登录后:
\l 列举数据库
\c databaseName 选择数据库,成功后可执行sql语句操作(记住以“;”结尾)。
\dt 列举表
\q 退出连接
vim:
vim filename 打开文件,没有则创建
:number 跳转到第number行
:set number 显示行数
/string 查找“string”字符串,查找后n显示下一个,N显示上一个
http://www.cnblogs.com/softwaretesting/archive/2011/07/12/2104435.html
git:
git clone -b branch gitRepo
git diff
git diff commitID_a commitID_b
git diff filename
git fetch
git checkout -b
git branch
git pull
git push origin branch
git status
git log
git reset --hard commitID
git merge branch
git rebase branch
git add
git commit
git cherry-pick commitID
shell:
find . -type f -name "*" | xargs grep syslog 查找文件内容