We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b864e18 commit 67b623dCopy full SHA for 67b623d
_posts/2018-01-16-Git常用命令记录.md
@@ -36,6 +36,18 @@ share: true
36
### 推送空的分支到某个远程分支,等同与删除远程分支。
37
git push origin :<Branch Name>
38
39
+## 在A分支基础上创建出B分支
40
+
41
+ git checkout -b <Branch B> <Branch A>
42
43
+## 切换分支
44
45
+ git checkout <Branch Name>
46
47
+## 合并分支
48
49
+ git merge <Branch Name> # 合并分支
50
+ git merge --no-ff <Branch Name> # 合并分支,且保留版本演进记录
51
52
# 标签
53
_posts/2018-08-22-团队合作开发资料整理(长期更新).md
@@ -0,0 +1,17 @@
1
+---
2
+layout: post
3
+title: "团队合作开发资料整理(长期更新)"
4
+description: ""
5
+category: articles
6
+tags: [team, 团队]
7
+image:
8
+ feature:
9
+ credit: Michael Rose
10
+ creditlink: http://mademistakes.com
11
+comments: true
12
+share: true
13
14
15
+## 版本管理
16
17
+* [Git分支管理策略](http://www.ruanyifeng.com/blog/2012/07/git.html)
0 commit comments