Quantcast
Channel: Page 12 – UnMickAble
Viewing all articles
Browse latest Browse all 37

Moving a Directory from One Git Repo to Another (with history)

$
0
0


git log --pretty=email --patch-with-stat --reverse --full-index --binary directory_name > /tmp/directory_name_patch;
git init directory_name;
cd directory_name;
git am < /tmp/directory_name_patch;


Viewing all articles
Browse latest Browse all 37

Trending Articles