Skip to content

Instantly share code, notes, and snippets.

@channgo2203
channgo2203 / merge_git_repo_as_subdir
Created July 2, 2020 20:54 — forked from smdabdoub/merge_git_repo_as_subdir
Merge one git repository into another repository as a sub-directory
# based on the following:
# http://saintgimp.org/2013/01/22/merging-two-git-repositories-into-one-repository-without-losing-file-history/
# http://blog.caplin.com/2013/09/18/merging-two-git-repositories/
git clone repo_main
git clone repo_sub
cd repo_main
git remote add repo_sub ../repo_sub
git fetch repo_sub
@channgo2203
channgo2203 / introrx.md
Created June 10, 2016 15:14 — forked from staltz/introrx.md
The introduction to Reactive Programming you've been missing