Adding a project to repo using subtree

This commit is contained in:
Samar Panda 2015-09-02 19:58:41 +05:30
parent 061d6ba4bb
commit b31618b975
2 changed files with 10 additions and 0 deletions

View File

@ -57,6 +57,7 @@
* [Retrieve the commit hash of the initial revision.](https://github.com/git-tips/tips#retrieve-the-commit-hash-of-the-initial-revision)
* [Visualize the version tree.](https://github.com/git-tips/tips#visualize-the-version-tree)
* [Deploying git tracked subfolder to gh-pages](https://github.com/git-tips/tips#deploying-git-tracked-subfolder-to-gh-pages)
* [Adding a project to repo using subtree. Lets say we are adding in vendor directory](https://github.com/git-tips/tips#adding-a-project-to-repo-using-subtree-lets-say-we-are-adding-in-vendor-directory)
<!-- Dont remove or change the comment below that can break automatic updates. More info at <http://npm.im/doxie.inject>. -->
<!-- @doxie.inject end toc -->
@ -407,5 +408,10 @@ gitk --all
git subtree push --prefix subfolder_name origin gh-pages
```
## Adding a project to repo using subtree. Lets say we are adding in vendor directory
```sh
git subtree add --prefix=vendor/<project_name> --squash git@github.com:<username>/<project_name>.git master
```
<!-- Dont remove or change the comment below that can break automatic updates. More info at <http://npm.im/doxie.inject>. -->
<!-- @doxie.inject end -->

View File

@ -227,5 +227,9 @@
"title": "Deploying git tracked subfolder to gh-pages",
"tip": "git subtree push --prefix subfolder_name origin gh-pages",
"alternatives": "git subtree push --prefix subfolder_name origin branch_name"
},
{
"title": "Adding a project to repo using subtree. Lets say we are adding in vendor directory",
"tip": "git subtree add --prefix=vendor/<project_name> --squash git@github.com:<username>/<project_name>.git master"
}
]