<snip>
Whether performed against a separate directory to
create a large patch or
performed directly in a local GIT repository, next would be a bunch of
'git add' commands to add the newly renamed chalk files and directories.
Possibly like this:
for i in `find koffice-i18n -name chalk*`; git add $i; done
Usually you can just do a "git add *" from the top directory, and GIT will
automatically detect deleted, added, and renamed files when you "git
commit -a" afterwards.
Tim