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

git recommend(alive)

时间:2020-01-30 21:06:47      阅读:68      评论:0      收藏:0      [点我收藏+]

标签:push   merge   list   git   class   comm   合并   branch   plain   

 

初始化并跟踪远程分支:

echo "# test" >> README.md
git init
git add README.md
git commit -m "first commit"
git remote add origin https://github.com/jiujue/branchName.git
git push -u origin master
合并分支到 master : get merge 
图形化显示 : git log --graph
代码暂存(用于debug):
  1. 暂存工作状态git stash

  1. 创建并切换到debug分支git checkout -b bug01

  2. debug ...

  3. git checkout master

  4. 合并debug后的分支git merge bug01

  5. 查看暂存的工作状态git stash list

  6. 回到原工作状态 : git pop

 

git recommend(alive)

标签:push   merge   list   git   class   comm   合并   branch   plain   

原文地址:https://www.cnblogs.com/jiujue/p/12243684.html

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