美文网首页
SourceTree 3.x.x 跳过登录跳过注册

SourceTree 3.x.x 跳过登录跳过注册

作者: 小白蔡_f79a | 来源:发表于2020-04-09 13:10 被阅读0次

    SourceTree下载地址:https://www.sourcetreeapp.com/,根据自己的系统下载对应的软件

    下载完之后双击sourceTree.exe应用程序会出现这个界面,要我们登录Bitbuckket,这个是可以跳过的。

    第一步:在电脑地址栏输入%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

      }

    ]

    以前的版本,新建完这个json文件后重启SourceTree就可以跳过登录注册了,这次是3.3.6版本的,还需要再一步进行配置。

    第二步:在文件地址栏输入%LocalAppData%\Atlassian\SourceTree.exe_Url_ftcmag3wubhxd3gymlul4xpajhnxh00f\3.3.6.3829

    这里的3.3.6.3829是版本号,每个版本号不一样,所以这个文件夹名称可能不太一样。

    打开对应的版本文件夹下的user.config文件在SourceTree标签中添加以下代码:

    <setting name="AgreedToEULA" serializeAs="String">

        <value>True</value>

    </setting>

    <setting name="AgreedToEULAVersion" serializeAs="String">

        <value>20160201</value>

    </setting>

    第三步:重启SourceTree,此时会弹出未检测到mercurial的弹窗,选择第四个不使用mercurial,即可正常使用SourceTree的功能了。

    相关文章

      网友评论

          本文标题:SourceTree 3.x.x 跳过登录跳过注册

          本文链接:https://www.haomeiwen.com/subject/pzbsmxtx.html