SourceTree安装时跳过登录

文章目录

    • 文章转载
    • 问题描述
    • 解决办法

文章转载

  1. sourcetree跳过注册的方法

问题描述

安装 SourceTree 时,需要使用atlassian授权,即使这个过程也会出现反应慢,收不到邮件或短信的问题,现提供跳过 atlassian账号 授权方法。

SourceTree安装时跳过登录_第1张图片

解决办法

  1. C:\Users\huangbiao7\AppData\Local\Atlassian\SourceTree文件夹下面添加 accounts.json文件
  2. 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
  }
]

你可能感兴趣的:(开发工具)