git recommend(alive)
初始化并跟踪远程分支:
echo "# test" >> README.mdgit initgit add README.mdgit commit -m "first commit"git remote add origin https://github.com/jiujue/branchName.gitgit push -u origin master
合并分支到 master : get merge
图形化显示 : git log --graph
代码暂存(用于debug):
暂存工作状态
git stash
创建并切换到debug分支
git checkout -b bug01
debug ...
git checkout master
合并debug后的分支
git merge bug01
查看暂存的工作状态
git stash list
回到原工作状态 :
git pop
相关推荐
baolen 2020-08-15
炼金术士lee 2020-08-15
huangchunxia 2020-08-07
lljhi0 2020-07-21
huangchunxia 2020-07-08
zhangxing 2020-07-05
ArkShen 2020-07-05
nebulali 2020-07-05
formula 2020-11-12
huhongfei 2020-11-05
乾坤一碼農 2020-10-27
liumengyanysu 2020-10-22
E哥的aws认证攻略 2020-10-15
tianyafengxin 2020-10-08
guying 2020-10-05
好脑筋不如烂笔头 2020-09-17