I commit my project into a git repo via Visual Studio. My team has to download only the exes and deploy. Is it possible via TortoiseGit to download specific files instead of a repo?
Asked
Active
Viewed 3,130 times
0
-
https://stackoverflow.com/search?q=%5Bgit%5D+clone+single+folder – phd Mar 05 '20 at 08:22
-
Use TortioseSVN to download a particular folder GitHub. I know it's counter-intuitive, using an SVN client on a server that mainly deals with Git, but it works. – Dwedit Oct 14 '21 at 18:55
1 Answers
0
In General that is not possible. The concept of Git and, therefore, TortoiseGit is that you have to fully clone a repository.
Exception is if there is a web interface such as GitHub/GitLab which allow individual file access.
PS: Executables should not be part of the repository. You already have the source code and can easily build each state.
PSS: Maybe a hook or CI/CD approach helps to upload your binary somewhere automatically.

MrTux
- 32,350
- 30
- 109
- 146