how to Download single file/folder from a Private GitHub repository hosted on GitHub. The repository structure is like
AndroidApps/
├── FirstAnimation/
│ ├── app
│ └── build.gradle
| └── gradle.properties
| └── ...
|
└── NavigationHelp/
| ├── app
| └── build.gradle
| └── gradle.properties
| └── ...
|
└── ChatApp/
├── app
└── build.gradle
└── gradle.properties
└── ...
And I want to download only the NavigationHelp folder and not clone the whole AndroidApps project.
note-(previously answer given on Stack overflow related to public folder which does not work for private repo)