Assume I am working on a branch say B and doing some push to the remote repository in GIT. At some point of time say T1, I created a new tag named T and then again doing some more changes in the branch B. So at time T2 (i.e now) the branch is ahead of the tag by few commits. I want to move those selected new files from the branch (modified files between the time T1 and T2) to the tag T again in remote repository.
I know I can delete the tag T remotely and create a new tag again from the branch B. But I don't want all the files tagged from the branch. Instead I want to move certain files (modified between T1 and T2) from the latest branch to the existing tag.
Is there any way I can do like that ?