git@vger.kernel.org mailing list mirror (one of many)
 help / color / mirror / code / Atom feed
From: Sergey Organov <sorganov@gmail.com>
To: Junio C Hamano <gitster@pobox.com>
Cc: git@vger.kernel.org, "Ævar Arnfjörð Bjarmason" <avarab@gmail.com>,
	"Thomas Rast" <tr@thomasrast.ch>,
	"Denton Liu" <liu.denton@gmail.com>,
	"Eric Sunshine" <sunshine@sunshineco.com>
Subject: Re: [PATCH v2] stash: implement '--staged' option for 'push' and 'save'
Date: Fri, 15 Oct 2021 22:05:03 +0300	[thread overview]
Message-ID: <87pms6cdnk.fsf@osv.gnss.ru> (raw)
In-Reply-To: <xmqq5yty6uh1.fsf@gitster.g> (Junio C. Hamano's message of "Fri, 15 Oct 2021 10:58:18 -0700")

Junio C Hamano <gitster@pobox.com> writes:

> Sergey Organov <sorganov@gmail.com> writes:
>
>> @@ -205,6 +205,16 @@ to learn how to operate the `--patch` mode.
>>  The `--patch` option implies `--keep-index`.  You can use
>>  `--no-keep-index` to override this.
>>  
>> +-S::
>> +--staged::
>> +	This option is only valid for `push` and `save` commands.
>> ++
>> +Stash only the changes that are currently staged. This is similar to
>> +basic `git commit` except the state is committed to the stash instead
>> +of current branch.
>> ++
>> +The `--patch` option has priority over this one.
>> +
>>  --pathspec-from-file=<file>::
>>  	This option is only valid for `push` command.
>>  +
>> @@ -341,6 +351,24 @@ $ edit/build/test remaining parts
>>  $ git commit foo -m 'Remaining parts'
>>  ----------------------------------------------------------------
>>  
>> +Saving unrelated changes for future use::
>> +
>> +When you are in the middle of massive changes and you find some
>> +unrelated issue that you don't want to forget to fix, you can do the
>> +change(s), stage them, and use `git stash push --staged` to stash them
>> +out for future use. This is similar to committing the staged changes,
>> +only the commit ends-up being in the stash and not on the current branch.
>> ++
>> +----------------------------------------------------------------
>> +# ... hack hack hack ...
>> +$ git add --patch foo           # add unrelated changes to the index
>> +$ git stash push --staged       # save these changes to the stash
>> +# ... hack hack hack, finish curent changes ...
>> +$ git commit -m 'Massive'       # commit fully tested changes
>> +$ git switch fixup-branch       # switch to another branch
>> +$ git stash pop                 # to finish work on the saved changes
>> +----------------------------------------------------------------
>> +
>
> The last step would more like "to start working on top of the saved
> changes", I would think, as the user did not want to bother thinking
> about them earlier while working on the other theme.  Otherwise, the
> user would have done
>
>     git checkout -b fixup-branch
>     git add -p
>     git commit -m '[WIP] mostly done' -e
>     git checkout -
>
> to remember that the fixup is not quite but mostly done and what was
> done so far.

Yep, that's why I said: "to finish work on the saved changes" in the
comments. If it's not clear enough, I'm open for suggestions for
clarifications.

>
> But I'd agree that the new mode would fit in such a workflow.
>
>
>> +static int stash_staged(struct stash_info *info, const struct pathspec *ps,
>> +		       struct strbuf *out_patch, int quiet)
>> +{
>> +	int ret = 0;
>> +	struct child_process cp_diff_tree = CHILD_PROCESS_INIT;
>> +	struct index_state istate = { NULL };
>> +
>> + if (write_index_as_tree(&info->w_tree, &istate,
>> the_repository->index_file,
>> +				0, NULL)) {
>> +		ret = -1;
>> +		goto done;
>> +	}
>
> OK.  So what is currently in the index becomes the w-tree.
>
>> +	cp_diff_tree.git_cmd = 1;
>> +	strvec_pushl(&cp_diff_tree.args, "diff-tree", "-p", "-U1", "HEAD",
>> +		     oid_to_hex(&info->w_tree), "--", NULL);
>> +	if (pipe_command(&cp_diff_tree, NULL, 0, out_patch, 0, NULL, 0)) {
>> +		ret = -1;
>> +		goto done;
>> +	}
>> +
>> +	if (!out_patch->len) {
>> +		if (!quiet)
>> +			fprintf_ln(stderr, _("No changes selected"));
>> +		ret = 1;
>> +	}
>
> This seems to have been taken from the "stash_patch()" flow,

Yep, exactly. I'm not familiar enough with the code to easily write it
by myself, so it's basically a copy-paste of stash_patch() and getting
rid of all the unneeded stuff.

> but
> unlike the "stash -p" that goes interactive to let the user pick
> hunks, in which context "oh, no, you did not SELECT anything" makes
> perfect sense as an error message, this message would be confusing
> to users who weren't offered a chance to select.

It seems to me that it makes sense to leave this warning as is, in case
the user invoked "stash --staged" without anything staged. I'm OK to
change this if you have something better in mind.

>
>> +done:
>> +	discard_index(&istate);
>> +	return ret;
>> +}
>> +
>
> Also, as stash_staged() and stash_patch() are _so_ close, I suspect
> that we might want to make a common helper out of the original
> stash_patch() and make stash_patch() a thin wrapper around it in the
> step #1 of the series, and then add stash_staged() as a second
> caller to the common helper.  That might result in a cleaner end
> result.  And optionally the "do we really need to spawn diff-tree"
> optimization can be done on top after the dust settles [*].

I do see a few of opportunities to improve code quality of "git stash",
even before this patch, but that is was not an aim of this patch.

What I aimed for is to keep all the existing code as intact as possible
to minimize probability of unintended breakage.

[...]

>>  static int do_create_stash(const struct pathspec *ps, struct strbuf
>> *stash_msg_buf,
>> -			   int include_untracked, int patch_mode,
>> + int include_untracked, int patch_mode, int only_staged,
>
> Let's not keep adding a parameter to represent just a bit (or less).
> Can't we at least treat this as an auxiliary bit in the "patch_mode"
> flag?  The traditional patch_mode may be variant #1 while the one
> that does the same thing but skips the interactive hunk selection
> (i.e. only-staged) becomes the variant #2, or something?

I don't want to mix --patch and --staged, as I believe --patch, after
introduction of --staged, becomes almost useless. One can instead use
"git add --interactive" directly and then run "stash --staged" on the
result.

That said, to get rid of these function arguments bloating, the code
should better be rewritten to use structure to hold all the parameters,
but that's again not the material of this patch.

>
>> @@ -1321,6 +1353,16 @@ static int do_create_stash(const struct pathspec *ps, struct strbuf *stash_msg_b
>>  		} else if (ret > 0) {
>>  			goto done;
>>  		}
>> +	} else if (only_staged) {
>> +		ret = stash_staged(info, ps, patch, quiet);
>> +		if (ret < 0) {
>> +			if (!quiet)
>> +				fprintf_ln(stderr, _("Cannot save the current "
>> +						     "staged state"));
>> +			goto done;
>> +		} else if (ret > 0) {
>> +			goto done;
>> +		}
>
> ... which would reduce the need to add yet another else-if to this
> cascade.

These else-if cascades could *all* be reduced. The code does need actual
re-factoring, independently of this patch.

>
>> @@ -1379,7 +1421,7 @@ static int create_stash(int argc, const char **argv, const char *prefix)
>>  	if (!check_changes_tracked_files(&ps))
>>  		return 0;
>>  
>> -	ret = do_create_stash(&ps, &stash_msg_buf, 0, 0, &info,
>> +	ret = do_create_stash(&ps, &stash_msg_buf, 0, 0, 0, &info,
>>  			      NULL, 0);
>
> and no need to touch this hunk.

Yep, if they all were in parameters structure in the first place, it'd
be unneeded.

>
>> @@ -1389,7 +1431,7 @@ static int create_stash(int argc, const char
>> **argv, const char *prefix)
>>  }
>>  
>>  static int do_push_stash(const struct pathspec *ps, const char
>> *stash_msg, int quiet,
>> -			 int keep_index, int patch_mode, int include_untracked)
>> + int keep_index, int patch_mode, int include_untracked, int
>> only_staged)
>>  {
>
> nor this one.

Yep, but that's the generic problem with the code. Mixing "only_staged"
into "patch_mode" would only worsen the code.

>
> I think I can agree with the motivation now (thanks for the
> discussion); the code may want a bit more cleaning up.

I do thing the code of "git stash" needs cleanup. Independently of the
patch. If somebody gets time to cleanup the original code, I'll happily
adapt the patch to the changes.

Otherwise, maybe I'll find time later to refactor the resulting code of
the "git stash" myself, but I'd like the patch to get its place first.

If you insist, I can provide a follow-up patch that factors-out minor
bit of common code from --patch and --staged, but I really don't want to
mix "only_staged" flag into the "patch_mode" flag, sorry.

Thanks,
-- Sergey Organov

  reply	other threads:[~2021-10-15 19:05 UTC|newest]

Thread overview: 26+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-10-01 22:12 [PATCH RFC] stash: implement '--staged' option for 'push' and 'save' Sergey Organov
2021-10-11 20:16 ` [PATCH RFC v1] " Sergey Organov
2021-10-11 21:21   ` Eric Sunshine
2021-10-11 21:55     ` Sergey Organov
2021-10-12  9:18       ` Ævar Arnfjörð Bjarmason
2021-10-12 11:20         ` Sergey Organov
2021-10-12 12:04         ` Junio C Hamano
2021-10-12 12:34           ` Junio C Hamano
2021-10-12 16:07             ` Sergey Organov
2021-10-12 17:28               ` Junio C Hamano
2021-10-12 18:25                 ` Sergey Organov
2021-10-13  4:48                   ` Junio C Hamano
2021-10-13 13:43                     ` Sergey Organov
2021-10-15 15:04   ` [PATCH v2] " Sergey Organov
2021-10-15 17:58     ` Junio C Hamano
2021-10-15 19:05       ` Sergey Organov [this message]
2021-10-15 19:22         ` Junio C Hamano
2021-10-15 20:14           ` Sergey Organov
2021-10-15 20:21             ` Sergey Organov
2021-10-18 16:09     ` [PATCH v3] " Sergey Organov
2021-10-26  5:05       ` Jeff King
2021-10-27 15:11         ` Sergey Organov
2021-10-27 15:20       ` [PATCH v4] " Sergey Organov
2021-10-27 21:19         ` Junio C Hamano
2021-10-28  8:29           ` [PATCH] stash: get rid of unused argument in stash_staged() Sergey Organov
2021-10-28 21:17             ` Junio C Hamano

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

  List information: http://vger.kernel.org/majordomo-info.html

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=87pms6cdnk.fsf@osv.gnss.ru \
    --to=sorganov@gmail.com \
    --cc=avarab@gmail.com \
    --cc=git@vger.kernel.org \
    --cc=gitster@pobox.com \
    --cc=liu.denton@gmail.com \
    --cc=sunshine@sunshineco.com \
    --cc=tr@thomasrast.ch \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this public inbox

	https://80x24.org/mirrors/git.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).