zoukankan      html  css  js  c++  java
  • SourceTree免登录使用

    官方下载地址:https://www.sourcetreeapp.com/download-archives

    • 旧版
      旧版免登录只需要执行第二步即可,如下界面为旧版。

    5b0c56c5f5196582d5262b21ffbf94b829b

    • 新版
      博主用的是SourceTreeSetup-3.3.8,如下界面为新版,第二、三步操作都需执行。

    c35c22559ae6a305fa51fd14e367235afe2

    二、添加accounts.json

    进入C:/Users/Administrator/AppData/Local/Atlassian/SourceTree目录,地址栏输入以下地址即可进入。

    %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
      }
    ]

    三、修改user.config

    进入C:/Users/Administrator/AppData/Local/Atlassian/SourceTree.exe_Url_ehxo33lcbvsvb51tb25j1akl1v2frli5/3.3.8.3848目录,不同版本的目录结构可能不同,可输入以下地址自行进入。

    %LocalAppData%/Atlassian

    修改user.config文件,在标签<SourceTree.Properties.Settings>子级添加以下内容:

    <setting name="AgreedToEULA" serializeAs="String">
      <value>True</value>
    </setting>
    <setting name="AgreedToEULAVersion" serializeAs="String">
      <value>20160201</value>
    </setting>
  • 相关阅读:
    java并发之CopyOnWriteArraySet
    MySQL 锁
    MySQL 汇总
    MySQL 删除重复数据
    插入排序-PHP
    选择排序-PHP
    快速排序-PHP
    一文轻松读懂微服务、集群、分布式的概念和区别一文轻松读懂微服务、集群、分布式的概念和区别
    k8s与docker简介
    冒泡排序-PHP
  • 原文地址:https://www.cnblogs.com/51net/p/13169433.html
Copyright © 2011-2022 走看看