Pistolpete .
Pistolpete .

Reputation: 1148

tf checkin a specific folder

in the "checkin" command documentation of Visual Studio it says:

Check in a change to a single item without using the Check In dialog box

c:\code\SiteApp\Main>tf checkin program.cs /noprompt

How can I checkin a specific folder?

Like that: tf checkin path/path/path -comment:"some comment" ?

Upvotes: 0

Views: 1733

Answers (1)

Andy Li-MSFT
Andy Li-MSFT

Reputation: 30362

You can use tf checkin /recursive , it will check in everything under a given directory.

You have two ways to checkin a specific folder: (Navigate to your workspace first, eg, My workspace mapped to E:\andy\0718\maven)

1. Specify folder path directly: (Add a new folder "0719" with *.txt files to test that)

tf checkin E:\andy\0718\maven\0719 /comment:"0719" /recursive /noprompt

2. Navigate to the specific directory (folder), then check in the files in current folder:

cd 07192

tf checkin /comment:"07192 test" /noprompt

Note: In above example, I added new folder "0719" and "07192" with *.txt files to test that, you can using the tf checkin command directly to checkin your existing folders. enter image description here

enter image description here

Upvotes: 2

Related Questions