-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #37 from lambda2/master
Typo
- Loading branch information
Showing
1 changed file
with
2 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -60,7 +60,7 @@ | |
* [Adding a project to repo using subtree](https://github.com/git-tips/tips#adding-a-project-to-repo-using-subtree) | ||
* [Get latest changes in your repo for a linked project using subtree](https://github.com/git-tips/tips#get-latest-changes-in-your-repo-for-a-linked-project-using-subtree) | ||
* [Export a branch with history to the a file.](https://github.com/git-tips/tips#export-a-branch-with-history-to-the-a-file) | ||
* [Import form a bundle](https://github.com/git-tips/tips#import-form-a-bundle) | ||
* [Import from a bundle](https://github.com/git-tips/tips#import-from-a-bundle) | ||
* [Get the name of current branch.](https://github.com/git-tips/tips#get-the-name-of-current-branch) | ||
* [Ignore one file on commit (e.g. Changelog).](https://github.com/git-tips/tips#ignore-one-file-on-commit-eg-changelog) | ||
|
||
|
@@ -428,7 +428,7 @@ git subtree pull --prefix=<directory_name>/<project_name> --squash [email protected] | |
git bundle create <file> <branch-name> | ||
``` | ||
|
||
## Import form a bundle | ||
## Import from a bundle | ||
```sh | ||
git clone repo.bundle <repo-dir> -b <branch-name> | ||
``` | ||
|