windows版本SourceTree免登陆初始设置

xi

新版本的sourceTree安装之后需要使用账户登陆授权以后才可以使用,之前的旧版本可以不能登录直接使用。

sourceTree免登陆跳过初始设置方法

1、安装完sourceTree以后先运行一次,弹出初始化登录页码后退出

2、打开我的电脑,在地址栏输入地址:  %LocalAppData%AtlassianSourceTree

3、在此目录下新建名为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
  }
]

4、再次打开sourcetree就可以直接跳过登录进入软件下一步页面了。

原文地址:https://www.cnblogs.com/freeblogs/p/7922162.html