type AuthInfo struct {
// Usernane or email Username string// Plaintext password or token Password string// repo component of URL// Usually: "username/repo_name"// But could also be: "some_repo.git"
Repo string// Are we pushing or fetching ? Push bool Fetch bool}