* force "unmerged" for same-file auto-merges
@ 2010-03-24 1:44 Neal Kreitzinger
2010-03-26 1:04 ` Neal Kreitzinger
` (2 more replies)
0 siblings, 3 replies; 5+ messages in thread
From: Neal Kreitzinger @ 2010-03-24 1:44 UTC (permalink / raw)
To: git
Scenario: "same-file auto-merge": when two different people change the
same file in their separate repos. Their changes do not conflict in the
sense that they are changes to the same lines. However, their changes do
conflict in the sense that the resulting merged logic is incorrect.
Concern:
The same-file auto-merge results are overlooked (not reviewed) by the
programmer because there is nothing preventing a git-commit immediately
after the auto-merge completes.
Desired Solution:
Perform same-file auto-merge and produce auto-merge results, but mark all
such auto-merged files as "unmerged" so that they must be reviewed/resolved
before a git-commit. The "unmerged" status allows git-mergetool to be run
(e.g. kdiff3) so that the merged lines can be reviewed. In this way, all
auto-merged files are reviewed.
Does anyone know if there are configuration and/or command-line options in
git that can accomplish this in a fairly straightforward manner? For
example, something like this:
Example config:
$ cat gitconfig
[merge]
samefileauto = forceconflict
Example command:
$ git merge -s sameautoforceconflict branchx
Example results:
$ git merge -s sameautoforceconflict branchx
Merging:
11a99zz examplecommitb
virtual branchx
found 1 common ancestor(s):
22b88yy examplecommita
Auto-merging examplepgm
Merge made by recursive.
examplepgm | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
$git status
examplepgm: needs merge
# On branch branchx
# Changed but not updated:
# (use "git add <file>..." to update what will be committed)
# (use "git checkout -- <file>..." to discard changes in working
directory)
#
# unmerged: examplepgm
#
no changes added to commit (use "git add" and/or "git commit -a")
v/r,
Neal
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: force "unmerged" for same-file auto-merges
2010-03-24 1:44 force "unmerged" for same-file auto-merges Neal Kreitzinger
@ 2010-03-26 1:04 ` Neal Kreitzinger
2010-03-27 17:22 ` Dilip M
2010-03-26 19:29 ` Junio C Hamano
2010-03-27 8:56 ` Sitaram Chamarty
2 siblings, 1 reply; 5+ messages in thread
From: Neal Kreitzinger @ 2010-03-26 1:04 UTC (permalink / raw)
To: git
In other words, when two people modify the same file in different places I
want the automerge results file, but I want the resulting file marked as
unmerged so the programmer can then run git-mergetool to review the merge
results. This also prevents the programmer from running git-commit
immediately after the automerge without reviewing the merge results. Can
"mark automerge of samefile as 'unmerged'" be done in git via config
settings or command options?
v/r,
Neal
"Neal Kreitzinger" <neal@rsss.com> wrote in message
news:hobqoc$5h3$1@dough.gmane.org...
> Scenario: "same-file auto-merge": when two different people change the
> same file in their separate repos. Their changes do not conflict in the
> sense that they are changes to the same lines. However, their changes do
> conflict in the sense that the resulting merged logic is incorrect.
>
> Concern:
> The same-file auto-merge results are overlooked (not reviewed) by the
> programmer because there is nothing preventing a git-commit immediately
> after the auto-merge completes.
>
> Desired Solution:
> Perform same-file auto-merge and produce auto-merge results, but mark all
> such auto-merged files as "unmerged" so that they must be
> reviewed/resolved before a git-commit. The "unmerged" status allows
> git-mergetool to be run (e.g. kdiff3) so that the merged lines can be
> reviewed. In this way, all auto-merged files are reviewed.
>
> Does anyone know if there are configuration and/or command-line options in
> git that can accomplish this in a fairly straightforward manner? For
> example, something like this:
>
>
> Example config:
> $ cat gitconfig
> [merge]
> samefileauto = forceconflict
>
>
> Example command:
> $ git merge -s sameautoforceconflict branchx
>
>
> Example results:
> $ git merge -s sameautoforceconflict branchx
> Merging:
> 11a99zz examplecommitb
> virtual branchx
> found 1 common ancestor(s):
> 22b88yy examplecommita
> Auto-merging examplepgm
> Merge made by recursive.
> examplepgm | 2 +-
> 1 files changed, 1 insertions(+), 1 deletions(-)
> $git status
> examplepgm: needs merge
> # On branch branchx
> # Changed but not updated:
> # (use "git add <file>..." to update what will be committed)
> # (use "git checkout -- <file>..." to discard changes in working
> directory)
> #
> # unmerged: examplepgm
> #
> no changes added to commit (use "git add" and/or "git commit -a")
>
>
> v/r,
> Neal
>
>
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: force "unmerged" for same-file auto-merges
2010-03-26 1:04 ` Neal Kreitzinger
@ 2010-03-27 17:22 ` Dilip M
0 siblings, 0 replies; 5+ messages in thread
From: Dilip M @ 2010-03-27 17:22 UTC (permalink / raw)
To: Neal Kreitzinger; +Cc: git
On Fri, Mar 26, 2010 at 6:34 AM, Neal Kreitzinger <neal@rsss.com> wrote:
> In other words, when two people modify the same file in different places I
> want the automerge results file, but I want the resulting file marked as
> unmerged so the programmer can then run git-mergetool to review the merge
> results. This also prevents the programmer from running git-commit
> immediately after the automerge without reviewing the merge results. Can
> "mark automerge of samefile as 'unmerged'" be done in git via config
> settings or command options?
What about merge with '--no-commit' option and than doing 'diff --cached'. You
have option of still seeing what merged and decide to reset or commit.
--
Dilip
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: force "unmerged" for same-file auto-merges
2010-03-24 1:44 force "unmerged" for same-file auto-merges Neal Kreitzinger
2010-03-26 1:04 ` Neal Kreitzinger
@ 2010-03-26 19:29 ` Junio C Hamano
2010-03-27 8:56 ` Sitaram Chamarty
2 siblings, 0 replies; 5+ messages in thread
From: Junio C Hamano @ 2010-03-26 19:29 UTC (permalink / raw)
To: Neal Kreitzinger; +Cc: git
"Neal Kreitzinger" <neal@rsss.com> writes:
> Does anyone know if there are configuration and/or command-line options in
> git that can accomplish this in a fairly straightforward manner?
I know there isn't.
Essentially what you are asking for is
read-tree -m -u --trivial O A B
followed by no file-level automerge. I think you can write a custom merge
strategy, perhaps using "resolve" as a template, to do that.
In practice, you will get too many false "conflicts" with such a strategy
and the quality of your "review" would degrade from fatigue, I suspect.
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: force "unmerged" for same-file auto-merges
2010-03-24 1:44 force "unmerged" for same-file auto-merges Neal Kreitzinger
2010-03-26 1:04 ` Neal Kreitzinger
2010-03-26 19:29 ` Junio C Hamano
@ 2010-03-27 8:56 ` Sitaram Chamarty
2 siblings, 0 replies; 5+ messages in thread
From: Sitaram Chamarty @ 2010-03-27 8:56 UTC (permalink / raw)
To: Neal Kreitzinger; +Cc: git
On Wed, Mar 24, 2010 at 7:14 AM, Neal Kreitzinger <neal@rsss.com> wrote:
> Scenario: "same-file auto-merge": when two different people change the
> same file in their separate repos. Their changes do not conflict in the
> sense that they are changes to the same lines. However, their changes do
> conflict in the sense that the resulting merged logic is incorrect.
You're not being pessimistic enough :-) A ".h" file that changed only
on one side can cause the same logic issues
> Desired Solution:
> Perform same-file auto-merge and produce auto-merge results, but mark all
> such auto-merged files as "unmerged" so that they must be reviewed/resolved
> before a git-commit. The "unmerged" status allows git-mergetool to be run
> (e.g. kdiff3) so that the merged lines can be reviewed. In this way, all
> auto-merged files are reviewed.
No. What you need is a full blown diff for the merge, with both sides
being compared with respect to the common merge-base. That diff will
be pretty big, although I'm not sure what diff options would actually
produce that (but I'll bet "-m" figures somewhere).
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2010-03-27 17:22 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-03-24 1:44 force "unmerged" for same-file auto-merges Neal Kreitzinger
2010-03-26 1:04 ` Neal Kreitzinger
2010-03-27 17:22 ` Dilip M
2010-03-26 19:29 ` Junio C Hamano
2010-03-27 8:56 ` Sitaram Chamarty
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 NNTP newsgroup(s).