git常用命令

git常用命令整合(若有常用的补充,评论留言)

git clone                                                 	克隆
git add .                                                  	添加
git commit -m \                                   提交分支
git remote update origin --prune                            更新分支列表
git branch -a 												查看分支列表
git checkout -b dev origin/dev          	 	            从远端创建分支并切换
git pull origin dev:dev 								    拉取
git merge master 										    合并
git log 												    查看历史版本
git reset --hard HEAD^ 						 				回滚到上个版本

你可能感兴趣的:(工具,git,java)