How to configure the repository on GitHub, so that you can install the program (any version, and there will be two in one repository), without cloning the entire repository. The cloning is to be done via the Linux. The program is packaged in the .tar.gz format.
Asked
Active
Viewed 62 times
1 Answers
0
You can use tags
to have multiple versions of a package
the article below will guide you

itshosyn
- 143
- 2
- 16
-
A tag lets you _identify_ a version, but it doesn't allow you to pull down just those versions of those files without cloning the repository. – tripleee May 25 '21 at 04:23
-
After each `tag (version)` you can manually download zip and tar file of that version without having new codes (that are in the new version) using git hosts like github – itshosyn May 25 '21 at 06:54
-
oh, thanks! Your answers solved my problem. – crocodile2221 Jun 05 '21 at 21:49