I am new git, I want to tag specific files from branch.
Example: I have
file1
, file2
, file3
, file4
in master
and tagged these 4 files as V1.0
for my initial release
Now I have added file5
in next release and merged into master
.
I have to tag only file5
in new tag as V2.0
not all the previous files (file1
, file2
, file3
, file4
).
Can this can be done in git?
Can anyone help me how to do this in git or any other solution where I can update my every release of my project?