summaryrefslogtreecommitdiff
path: root/wiki/dev/twigs.md
diff options
context:
space:
mode:
Diffstat (limited to 'wiki/dev/twigs.md')
-rw-r--r--wiki/dev/twigs.md24
1 files changed, 0 insertions, 24 deletions
diff --git a/wiki/dev/twigs.md b/wiki/dev/twigs.md
deleted file mode 100644
index c3c7505..0000000
--- a/wiki/dev/twigs.md
+++ /dev/null
@@ -1,24 +0,0 @@
-# Branches and Twigs
-
-## Twigs
-
-* Relatively short-lived
-* Share the commit policy of their parent branch
-* Gain little value from global names
-* Examples: most “topic branches” are twigs
-
-## Branches
-
-* Relatively long-lived
-* Correspond to differences in commit policy
-* Gain lots of value from global names
-* Examples: git-flow 'master', 'develop', &c; hg 'stable' vs 'default';
- release branches
-
-## Commit policy
-
-* Decisions like “should every commit pass tests?” and “is rewriting or
- deleting a commit acceptable?” are, collectively, the policy of a branch
-* Can be very formal or even tool-enforced, or ad-hoc and fluid
-* Shared understanding of commit policy helps get everyone's expectations
- lined up, easing other SCM-mediated conversations