Clone git repository without history

Last modified 11 months ago
On this page
  1. Summary
  2. Code

Summary

Sometimes you need to copy a repository and remove the history.

Code

git filter-branch --index-filter 'git rm --cached --ignore-unmatch [file_name]' HEAD