Preface
基于自己的本地镜像制作新人入职用的镜像的时候,遇到一些问题,特此记录。
Linux上清理git信息的命令
git help看起来好晦涩,搜索中文又是一片水,最后搜索到如下信息:
1 | git config --global --unset credential.helper |
Linux - How to Remove Git Credentials
Linux 清理svn信息
去svn的根目录下执行:
1 | find -type d -name '.svn' -exec rm -rfv {} \; |