标签:git log 本地 选项 git 配置 hive profile apply checkout
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 log --oneline
--online
选项可以显示简要提交信息
git commit --amend
撤销上次提交并以本次暂存区文件重新提交
mvn clean install
package
运行mvn clean package -Pdev (-Pdev指定用哪个profile下的配置文件)
不要把一些配置类框类的项目和 业务类的项目放在一个工程下打开,这样可能会导致项目运行的时候无法使用安装到本地maven
库的包
标签:git log 本地 选项 git 配置 hive profile apply checkout
原文地址:https://www.cnblogs.com/greatLong/p/12185956.html