Skip to content

Instantly share code, notes, and snippets.

@hmert
Forked from berkerpeksag/gist:4172064
Created November 30, 2012 12:20
Show Gist options
  • Save hmert/4175466 to your computer and use it in GitHub Desktop.
Save hmert/4175466 to your computer and use it in GitHub Desktop.
Bir Git deposundaki herhangi bir dosyayı ya da klasörü tüm geçmişiyle beraber başka bir depoya taşımak
# Taşınacak depo
$ git log --pretty=email --patch-with-stat --reverse -- src/etc/vim/ > vim.patch
# Yeni depo
$ git init
$ git am < vim.patch
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment