User:Randomguy3

From KDE Community Wiki

Git Magic

Safety Precautions

Always work on a disposable copy of the repo with all the remotes removed, so if you screw up, it doesn't really matter. Also, work on a separate branch. That way, you can use git reset --hard <original-branch> to get back to the starting state.

Also, make sure there are no grafts around (eg: linking to the old kdelibs history in the case of frameworks). The safest way to do this is to use fresh checkouts.

Merging in complete history

Used this for moving files from kapidox to kdoctools. Good when the history of the source repo doesn't contain too much you won't care about in the target repo. Preserves commit identities.

Create a commit in the source repo that removes any files you don't want to copy, and rearranges the remaining files to be as you want them to appear in the target repo. Then go to the root of the target repository and use git-merge-repo (from the kde-dev-scripts repository) to merge in the source repo:

/path/to/kde-dev-scripts/git-merge-repo <path to source repo>

Filtering

Usually, you do not want to include a git repository wholesale in another repository. More often, you want to include only some files. You probably also want to alter the commit messages to disable the KDE commit hook keywords, so that the merged history does not cause CCMAILs to be sent for ancient commits. git filter-branch can do all of this and more.

A combination of --tree-filter, --prune-empty and --msg-filter generally gets what you want. For example,

git filter-branch --prune-empty \
                  --tree-filter "find -type f -\! -path './.git/*' -\! -name foo.\* -delete" \
                  --msg-filter 'sed -e 's/^\(CCMAIL\|REVIEW\|BUG\|CCBUG\|FEATURE\)/(&)/'; echo; echo "Commit $GIT_COMMIT in <source-repo>"' \
                  HEAD

This example will remove everything that does not match foo.*. Note the -path argument to find that makes sure you don't delete any of git's own files. --prune-empty will remove non-merge commits that no longer have any effect on the tree (you can run git rebase after to trim the merge commits if you want). --msg-filter neuters the keywords and adds information about where the commit came from (don't forget to change <source-repo>!

More complex filters are possible. Have a look at the man page for git-filter-branch.

See mastering git filter-branch: points to extract a subproject for more helpful hints.