what is the equivalent in TFS of git cherry-pick -
i'm sorry question i'm tfs noob user, equivalent in tfs of git cherry-pick
first, create patch changeset want cherry-pick:
tf diff /version:c1234 /format:unified > cherry.patch
(note: careful redirecting file powershell. wants write utf-16 files many programs have hard time coping with.)
then apply patch using patch:
patch -p0 < cherry.patch
Comments
Post a Comment