Skip to content

Instantly share code, notes, and snippets.

@patricksimpson
Created December 7, 2012 20:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save patricksimpson/4236449 to your computer and use it in GitHub Desktop.
Save patricksimpson/4236449 to your computer and use it in GitHub Desktop.
git tfs pull
#!/usr/bin/expect
set username "your.name"
set password "yoursupercoolpassword"
spawn git tf pull
expect "Username:";
send "$username\n";
expect "Password:";
send "$password\n";
interact
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment