2010-12-17 10 views

Respuesta

7

Puede registrarse con el cmdlet New-TfsChangeSet y finalizar la compra con el cmdlet Add-TfsPendingChange -Edit.

Para obtener los cmdlets, debe tener instalado Microsoft Team Foundation Server 2010 Power Tools.

+1

¿Tiene un enlace a la documentación de ese cmdlet? Instalé Power Tools y PowerGUI actualizado y no aparecen en este momento. – StuperUser

+0

cualquier código de muestra completo en ps1? – Kiquenet

+1

@StuperUser: Uso de Bing Encontré https://blogs.msdn.com/b/bharry/archive/2008/10/01/preview-of-the-next-tfs-power-tools-release.aspx?Redirected= true y https://rkeithhill.wordpress.com/2008/11/11/team-foundation-powershell-pssnapin-in-october-team-foundation-power-tools-drop/ – PVitt

6

Tuve el mismo dolor que está teniendo, y finalmente llegué a la forma correcta de hacerlo. Aquí tienes.

#Load the TFS powershell 
Add-PSSnapin Microsoft.TeamFoundation.PowerShell 
# the filePath should be in the format like C:\MyFodler\MyFile.txt 
Add-TfsPendingChange -Edit -Item $filepath -Verbose -ErrorAction SilentlyContinue -wa 0 
# Check in the file after changes. 
New-TfsChangeset -Item $filepath -Verbose -Comment "Comment Here" -Override true 
Cuestiones relacionadas