From: "Mark Drago" <markdrago@gmail.com>
To: "Junio C Hamano" <gitster@pobox.com>
Cc: stelian@popies.net, git@vger.kernel.org
Subject: Re: [PATCH] hg-to-git: handle an empty dir in hg by combining git commits
Date: Thu, 6 Dec 2007 07:50:39 -0500 [thread overview]
Message-ID: <af675f7f0712060450g2e9d0496y93749c2209bd0f0c@mail.gmail.com> (raw)
In-Reply-To: <7veje11v7f.fsf@gitster.siamese.dyndns.org>
On Dec 5, 2007 2:01 AM, Junio C Hamano <gitster@pobox.com> wrote:
>
> Junio C Hamano <gitster@pobox.com> writes:
>
> > Mark Drago <markdrago@gmail.com> writes:
> >
> >> This patch will detect that there are no changes to commit (using git-status),
> >> and will not perform the commit, but will instead combine the log messages of
> >> that (non-)commit with the next commit.
> >
> > I think a better approach would be to implement --no-tree-change-is-ok
> > option to git-commit, strictly for use by foreign scm interface scripts
> > like yours. It does not usually make sense to record a commit that has
> > the exact same tree as its sole parent commit and that is why git-commit
> > prevents you from making that mistake, but when data from foreign scm is
> > involved, it is a different story. We are equipped to represent such a
> > (perhaps insane, perhaps by mistake, or perhaps done on purpose) change
> > and it is better to represent it bypassing the safety valve for native
> > use.
>
> So I did "git commit --allow-empty". With that, perhaps the following
> will fix the issue?
>
> I won't be commiting this myself until I hear a positive Ack.
I gave this a test and it works perfectly well. Commit away.
Thanks,
Mark.
> ---
> contrib/hg-to-git/hg-to-git.py | 2 +-
> 1 files changed, 1 insertions(+), 1 deletions(-)
>
> diff --git a/contrib/hg-to-git/hg-to-git.py b/contrib/hg-to-git/hg-to-git.py
> index 7a1c3e4..9befb92 100755
> --- a/contrib/hg-to-git/hg-to-git.py
> +++ b/contrib/hg-to-git/hg-to-git.py
> @@ -211,7 +211,7 @@ for cset in range(int(tip) + 1):
> os.system('git-ls-files -x .hg --deleted | git-update-index --remove --stdin')
>
> # commit
> - os.system(getgitenv(user, date) + 'git-commit -a -F %s' % filecomment)
> + os.system(getgitenv(user, date) + 'git commit --allow-empty -a -F %s' % filecomment)
> os.unlink(filecomment)
>
> # tag
>
prev parent reply other threads:[~2007-12-06 12:54 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2007-12-01 17:59 [PATCH] hg-to-git: handle an empty dir in hg by combining git commits Mark Drago
2007-12-01 20:02 ` Junio C Hamano
2007-12-03 8:44 ` [PATCH] git-commit --allow-empty Junio C Hamano
2007-12-03 8:53 ` Junio C Hamano
2007-12-03 17:58 ` Nicolas Pitre
2007-12-03 18:16 ` Junio C Hamano
2007-12-05 7:01 ` [PATCH] hg-to-git: handle an empty dir in hg by combining git commits Junio C Hamano
2007-12-06 12:50 ` Mark Drago [this message]
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
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=af675f7f0712060450g2e9d0496y93749c2209bd0f0c@mail.gmail.com \
--to=markdrago@gmail.com \
--cc=git@vger.kernel.org \
--cc=gitster@pobox.com \
--cc=stelian@popies.net \
/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.
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).