git操作

git stash 暂存工作区

git stash list 查看暂存列表

git stash apply 取出第一个暂存区

git stash $stashId 取出暂存区

git stash clear 清空暂存区

untracked file想要暂存的话,可以用git stash -u,或者先git add为tracked file

 

git branch 查看本地分支(当前分支标*)
git branch <branch-name> 创建本地分支
git branch <branch-name> <start-point> 从某个提交节点创建本地分支
git checkout <branch-name> 切换到分支
git checkout -b <branch-name> origin/<remote-branch-name> 创建并切换到分支,origin/<remote-branch-name>代表远程服务器上的分支
git push origin <branch-name> 提交本地分支到服务器
git merge <branch-name> 从分支合并代码
git branch -d <branch-name> 删除分支
git branch -d -r <branch-name>  删除远程分支
git branch -a 查看所有分支
git branch -r 查看远程分支(本地)
git remote show origin 查看远程分支(服务器端)

 

其他操作:

git init 初始化git库

git config --global color.status auto

git config --global color.diff auto

git config --global color.branch auto

git config --global color.interactive auto

你可能感兴趣的:(git)