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

Popular posts from this blog

unity3d - Rotate an object to face an opposite direction -

angular - Is it possible to get native element for formControl? -

javascript - Why jQuery Select box change event is now working? -