欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

sourcetree跳过注册的方式

程序员文章站 2022-05-31 18:37:40
...

1:仅针对sourcetree 3.2.6版本

首先在官网上下载SourceTree的安装包,我下载的时候最新版本是3.2.6
安装好软件后,打开软件会提示必须使用Bitbuket的账号才可以登录,我们只需要跳过这一步就可以正常使用其功能,具体步骤为:
为防止官网更新讲文件放到云盘*下载
链接:https://pan.baidu.com/s/1pTPkxiFU8qeTUJa1lf1gmw
提取码:77nd

2:

在文件系统地址栏输入: %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
}]

2:

第二步:在文件系统地址栏输入:%LocalAppData%\Atlassian进入SourceTree.exe_Url_2teh2ti3u00uadewxtjgksiqhpw5qyeh文件夹(根据版本不同,文件夹名称略有不同但前半部是一样的),再次进入名称为版本号的文件夹,这里是3.2.6.3544,打开user.config文件在SourceTree标签中添加代码

<setting name="AgreedToEULA" serializeAs="String">
    <value>True</value>
</setting>
<setting name="AgreedToEULAVersion" serializeAs="String">
    <value>20160201</value>
 </setting>
# 3:
重启软件后就已经跳过了注册/登录的步骤,此时会弹出未检测到mercurial的弹窗,选择第四个不适用==mercurial==,即可正常使用SourceTree的功能了。
相关标签: 环境