码迷,mamicode.com
首页 > 其他好文 > 详细

git/maven常用命令

时间:2020-01-13 10:40:22      阅读:91      评论:0      收藏:0      [点我收藏+]

标签:git log   本地   选项   git   配置   hive   profile   apply   checkout   

git命令列表

开发要切到自己的分支

git checkout -b new_branch_name 

这个命令是创建新分支new_branch_name, 并切换到该新分支。如果分支branch_name已经存在,使用下面命令切换到该分支

git checkout branch_name

暂存修改

git stash

查看暂存列表

git stash list

恢复暂存

恢复暂存有两种方法: git stash pop stash@{$num}git stash apply stash@{$num}, 区别是 git stash pop stash@{$num}在恢复暂存后会立即删除暂存的文件, git stash apply stash@{$num}则不会。可以稍后通过git stash drop stash@{$num}

git pop stash@{num}

参考git stash 用法总结和注意点

查看提交历史

git log --oneline

--online选项可以显示简要提交信息

修改提交

git commit --amend

撤销上次提交并以本次暂存区文件重新提交

maven命令列表

打包安装到本地

mvn clean install

打包成package运行

mvn clean package -Pdev (-Pdev指定用哪个profile下的配置文件)

不要把一些配置类框类的项目和 业务类的项目放在一个工程下打开,这样可能会导致项目运行的时候无法使用安装到本地maven库的包

git/maven常用命令

标签:git log   本地   选项   git   配置   hive   profile   apply   checkout   

原文地址:https://www.cnblogs.com/greatLong/p/12185956.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!