Skip to content
Jaimin Pan edited this page Oct 31, 2015 · 8 revisions

(@JaiminPan版权所有,转载请保留出处)

Overview

Git点点滴滴

Tools

貌似SmartGit最美观最好用,但License始终是个问题,只有非商业软件才能免费用。 SourceTree最大问题是不能按目录来查看文件和Log。

solve big repo with pool network

// clone shallow repo
git clone [email protected]/sample --depth=1

// complete the full repo
git pull --unshallow

Delete files forever

我一直在找如何在Git中永久删除某些文件(包括它们的历史记录)的办法,这个问题也是花费我时间最多的一个Git问题,所幸最后终于在GitHub的帮助页面“Removing sensitive data中找到了答案。尽管我并不完全明白工作原理,但好歹这个办法管用了

其他

Clone this wiki locally