這是本文件的舊版!
git
bare
convert existing git repo to bare repo
mkdir repo.git mv repo/.git repo.git rm -rf repo cd repo.git git config --bool core.bare true
Shallow clone
Convert shallow clone to full clone
git fetch --unshallow git fetch --depth=2147483647
Convert full clone to shallow clone
https://stackoverflow.com/questions/38171899/how-to-reduce-the-depth-of-an-existing-git-clone
git fetch --depth 10 / git fetch --deepen 10 git reflog expire --expire=all --all git tag -l | xargs git tag -d git gc --prune=all
git-svn
git svn clone -s http://svn-server/repo git svn fetch git svn dcommit git svn rebase
Rewrite
svn-remote.<name>.rewriteRoot This allows users to create repositories from alternate URLs. For example, an administrator could run git svn on the server locally (accessing via file://) but wish to distribute the repository with a public http:// or svn:// URL in the metadata so users of it will see the public URL. svn-remote.<name>.rewriteUUID Similar to the useSvmProps option; this is for users who need to remap the UUID manually. This may be useful in situations where the original UUID is not available via either useSvmProps or useSvnsyncProps.