SourceTree 免登录跳过初始设置的方法

mac 版还好,主要是 windows 版本安装好了以后会弹登陆授权,以前是可以跳过的,现在变强制了。
SourceTree 免登录跳过初始设置的方法_第1张图片
虽然是免费授权的,但是它这个服务器呀,我啥也不说了,gmail登不上,注册也注册不上,总之我整了一下午,不管你翻不你都是上不去,无奈。。。
所以这里记一下跳过这一步的方法。
原文:http://www.cnblogs.com/xiofee/p/sourcetree_pass_initialization_setup.html

安装之后,转到用户本地文件夹下的 SourceTree 目录,没有则新建。
注意是 LocalAppData 下的文件夹,不是它的安装目录

%LocalAppData%\Atlassian\SourceTree\

新建 accounts.json 文件

%LocalAppData%\Atlassian\SourceTree\accounts.json

输入以下内容保存即可

[
  {
    "$id": "1",
    "$type": "SourceTree.Api.Host.Identity.Model.IdentityAccount, SourceTree.Api.Host.Identity",
    "Authenticate": true,
    "HostInstance": {
      "$id": "2",
      "$type": "SourceTree.Host.Atlassianaccount.AtlassianAccountInstance, SourceTree.Host.AtlassianAccount",
      "Host": {
        "$id": "3",
        "$type": "SourceTree.Host.Atlassianaccount.AtlassianAccountHost, SourceTree.Host.AtlassianAccount",
        "Id": "atlassian account"
      },
      "BaseUrl": "https://id.atlassian.com/"
    },
    "Credentials": {
      "$id": "4",
      "$type": "SourceTree.Model.BasicAuthCredentials, SourceTree.Api.Account",
      "Username": "",
      "Email": null
    },
    "IsDefault": false
  }
]

现在再打开 SourceTree,直接显示主窗口了

你可能感兴趣的:(版本控制,c#)