forked from git-tfs/git-tfs
-
Notifications
You must be signed in to change notification settings - Fork 0
Fetch
pmiossec edited this page Nov 30, 2012
·
3 revisions
The fetch command fetch all the new changesets from a TFS remote
Usage: git-tfs fetch [options] [tfs-remote-id]...
-h, -H, --help
-V, --version
-d, --debug Show debug output about everything git-tfs does
-i, --tfs-remote, --remote, --id=VALUE
The remote ID of the TFS to interact with
default: default
--all, --fetch-all
--parents
--authors=VALUE Path to an Authors file to map TFS users to Git
users
--ignore-regex=VALUE a regex of files to ignore
--no-metadata leave out the 'git-tfs-id:' tag in commit
messages
Use this when you're exporting from TFS and
don't need to put data back into TFS.
-u, --username=VALUE TFS username
-p, --password=VALUE TFS password
To fetch all the changeset of the default
branch:
git tfs fetch
To fetch all the changeset of the tfs/myBranch
branch:
git tfs fetch -i myBranch
For the use of parameters --username
and --password
, see the clone command.
For the use of parameter --authors
, see the clone command.