aboutsummaryrefslogtreecommitdiffstats
path: root/Documentation/SubmittingPatches
diff options
context:
space:
mode:
authorLinus Arver <linusa@google.com>2023-07-14 06:01:30 +0000
committerJunio C Hamano <gitster@pobox.com>2023-07-14 10:31:43 -0700
commit3423e372e4021b6608d4b5e65da9231425d0c455 (patch)
tree4e524025470203a1705788fafd252ffa50245af4 /Documentation/SubmittingPatches
parentfc0825d56130ee3d7542c1711bd61cd1cf9bedb5 (diff)
downloadgit-3423e372e4021b6608d4b5e65da9231425d0c455.tar.gz
SubmittingPatches: discuss subsystems separately from git.git
The discussion around subsystems disrupts the flow of discussion in the surrounding area, which only deals with starting points used for the git.git project. So move this bullet point out to the end. Signed-off-by: Linus Arver <linusa@google.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'Documentation/SubmittingPatches')
-rw-r--r--Documentation/SubmittingPatches8
1 files changed, 4 insertions, 4 deletions
diff --git a/Documentation/SubmittingPatches b/Documentation/SubmittingPatches
index b89678cedc..7919a362e3 100644
--- a/Documentation/SubmittingPatches
+++ b/Documentation/SubmittingPatches
@@ -35,14 +35,14 @@ change is relevant to.
to stabilize, you would have to rebase it (see the "depends on other
topics" above).
-* Some parts of the system have dedicated maintainers with their own
- repositories (see the section "Subsystems" below). Changes to
- these parts should be based on their trees.
-
To find the tip of a topic branch, run `git log --first-parent
master..seen` and look for the merge commit. The second parent of this
commit is the tip of the topic branch.
+Finally, note that some parts of the system have dedicated maintainers
+with their own separate source code repositories (see the section
+"Subsystems" below).
+
[[separate-commits]]
=== Make separate commits for logically separate changes.