Junio C Hamano <[EMAIL PROTECTED]> writes:

> The "master" branch post 0.99.6 already has the renamed tools
> with backward compatibility symlinks.  I'll be sending a
> patch to address an issue raised by some people separately to
> see what the list thinks, and also will attempt to send out a
> patch for the Pasky and Catalin heads later this week.

I've prepared these and will be sending them out separately to
you two, hoping they would help you prepare for post 0.99.7
changes.  Note that 0.99.6 does not know about these new names,
the current "master" branch knows about both new and old names,
so will 0.99.7, and in 0.99.8 the old names will be removed, if
things go as planned.

Here is a small script that I used before auditing what it did
to your trees by running 'git diff' on its result.

------------
#!/bin/sh
git-ls-files |
xargs perl -i -p -e '
        s/git-merge-one-file-script/git-merge-one-file/g;
        s/git-count-objects-script/git-count-objects/g;
        s/git-format-patch-script/git-format-patch/g;
        s/git-parse-remote-script/git-parse-remote/g;
        s/git-request-pull-script/git-request-pull/g;
        s/git-cherry-pick-script/git-cherry-pick/g;
        s/git-archimport-script/git-archimport/g;
        s/git-send-email-script/git-send-email/g;
        s/git-verify-tag-script/git-verify-tag/g;
        s/git-cvsimport-script/git-cvsimport/g;
        s/git-ls-remote-script/git-ls-remote/g;
        s/git-checkout-script/git-checkout/g;
        s/git-sh-setup-script/git-sh-setup/g;
        s/git-octopus-script/git-octopus/g;
        s/git-resolve-script/git-resolve/g;
        s/git-checkout-cache/git-checkout-index/g;
        s/git-bisect-script/git-bisect/g;
        s/git-branch-script/git-branch/g;
        s/git-commit-script/git-commit/g;
        s/git-rebase-script/git-rebase/g;
        s/git-relink-script/git-relink/g;
        s/git-rename-script/git-rename/g;
        s/git-repack-script/git-repack/g;
        s/git-revert-script/git-revert/g;
        s/git-status-script/git-status/g;
        s/git-convert-cache/git-convert-objects/g;
        s/git-clone-script/git-clone/g;
        s/git-fetch-script/git-fetch/g;
        s/git-prune-script/git-prune/g;
        s/git-reset-script/git-reset/g;
        s/git-update-cache/git-update-index/g;
        s/git-diff-script/git-diff/g;
        s/git-pull-script/git-pull/g;
        s/git-push-script/git-push/g;
        s/git-merge-cache/git-merge-index/g;
        s/git-add-script/git-add/g;
        s/git-log-script/git-log/g;
        s/git-tag-script/git-tag/g;
        s/git-local-pull/git-local-fetch/g;
        s/git-diff-cache/git-diff-index/g;
        s/git-fsck-cache/git-fsck-objects/g;
        s/git-http-pull/git-http-fetch/g;
        s/git-ssh-pull/git-ssh-fetch/g;
        s/git-ssh-push/git-ssh-upload/g;
'
git-update-cache --refresh


-
To unsubscribe from this list: send the line "unsubscribe git" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to