Post 0.99.7 preperation patches

!MAILaRCHIVE_VOTE_RePLACE
Previous message: [thread] [date] [author]
Next message: [thread] [date] [author]
To: Catalin Marinas <catalin.marinas@...>, Petr Baudis <pasky@...>
Cc: <git@...>
Date: Friday, September 9, 2005 - 5:20 am

Junio C Hamano <junkio@cox.net> writes:


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 majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Previous message: [thread] [date] [author]
Next message: [thread] [date] [author]

Messages in current thread:
GIT 0.99.6, Junio C Hamano, (Wed Sep 7, 8:08 pm)
[ANNOUNCE] GIT 0.99.7, Junio C Hamano, (Sun Sep 18, 7:37 pm)
Re: [ANNOUNCE] GIT 0.99.7, Nigel Cunningham, (Sun Sep 18, 10:24 pm)
Re: [ANNOUNCE] GIT 0.99.7, Chris White, (Mon Sep 19, 8:01 am)
Re: [ANNOUNCE] GIT 0.99.7, Alan Chandler, (Mon Sep 19, 2:21 am)
[ANNOUNCE] Cogito-0.15, Petr Baudis, (Sun Sep 18, 9:14 pm)
Re: [ANNOUNCE] Cogito-0.15, Pavel Machek, (Mon Sep 19, 7:15 pm)
Re: [ANNOUNCE] Cogito-0.15, Linus Torvalds, (Mon Sep 19, 8:51 pm)
Re: [ANNOUNCE] Cogito-0.15, Petr Baudis, (Mon Sep 19, 8:35 pm)
What to expect after GIT 0.99.7, Junio C Hamano, (Sun Sep 18, 7:40 pm)
Re: What to expect after GIT 0.99.7, Anton Altaparmakov, (Mon Sep 19, 2:02 am)
Re: What to expect after GIT 0.99.7, Linus Torvalds, (Sun Sep 18, 9:30 pm)
Re: What to expect after GIT 0.99.7, Johannes Schindelin, (Mon Sep 19, 5:56 am)
Re: What to expect after GIT 0.99.7, Linus Torvalds, (Sun Sep 18, 10:02 pm)
No GIT 0.99.7 today, Junio C Hamano, (Sat Sep 17, 12:43 pm)
Tool renames and 'ls-files -t' output, Junio C Hamano, (Thu Sep 8, 6:14 pm)
RFC: s/git-merge-base/git-find-common-ancestor/g, Yasushi SHOJI, (Sun Sep 11, 3:02 am)
Re: RFC: s/git-merge-base/git-find-common-ancestor/g, Junio C Hamano, (Sun Sep 11, 3:38 am)
[PATCH] Rename git-merge-base to git-find-merge-base, Yasushi SHOJI, (Sun Sep 11, 4:40 am)
Post 0.99.7 preperation patches, Junio C Hamano, (Fri Sep 9, 5:20 am)
Re: Post 0.99.7 preperation patches, Petr Baudis, (Sun Sep 11, 9:26 pm)