add note about copying folder (#289)

* add note about copying folder

* add space b/w -- and folder name

also mention, this can be done for files

* add 'file' in the title
This commit is contained in:
KarthikSiddarth 2019-10-20 17:08:02 +05:30 committed by Richard Littauer
parent e0ff2c06b9
commit f0b433773f
1 changed files with 7 additions and 0 deletions

View File

@ -109,6 +109,7 @@ All commands should work for at least git version 2.13.0. See the [git website](
- [Clone all submodules](#clone-all-submodules)
- [Remove a submodule](#remove-a-submodule)
- [Miscellaneous Objects](#miscellaneous-objects)
- [Copy a folder or file from one branch to another](#copy-a-folder-or-file-from-one-branch-to-another)
- [Restore a deleted file](#restore-a-deleted-file)
- [Delete tag](#delete-tag)
- [Recover a deleted tag](#recover-a-deleted-tag)
@ -1591,6 +1592,12 @@ $ rm -rf .git/modules/submodulename
## Miscellaneous Objects
### Copy a folder or file from one branch to another
```sh
$ (my-branch)$ git checkout <branch-you-want-the-directory-from> -- <folder-name or file-name>
```
### Restore a deleted file
First find the commit when the file last existed: