From 9dae10ad14e4b220646d9b3e17b6c57a22362d36 Mon Sep 17 00:00:00 2001 From: Josh Triplett Date: Fri, 4 Nov 2016 14:22:55 -0600 Subject: [PATCH] INTERNALS: Fix the path for git-series refs --- INTERNALS.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/INTERNALS.md b/INTERNALS.md index 6b02812a3f4302c6deb2cdd1f134bcee9f4f65e8..67f406b4e1c2b911ab42a17db573915ef789161e 100644 --- a/INTERNALS.md +++ b/INTERNALS.md @@ -112,9 +112,9 @@ The `staged` commit for a patch series, if present, tracks the staged changes to the patch series. `git series add` adds changes from `working` to `staged`, and `git series unadd` removes changes from `staged`. -If a series does not have a series ref `refs/git-series/NAME`, but has a staged -or working ref, the series still exists, with no series commits. This can -happen by running `git series start NAME`, making some changes without +If a series does not have a series ref `refs/heads/git-series/NAME`, but has a +staged or working ref, the series still exists, with no series commits. This +can happen by running `git series start NAME`, making some changes without committing, and then running `git series detach`. git-series treats that as an existing series, and allows checking it out. This preserves work in progress on an un-started series.