zoukankan      html  css  js  c++  java
  • SourceTree windows免注册免登陆使用方法

    问题描述:

    安装SourceTree后,首次使用时,需要登录账号;但我们在注册或登录时,可能根本无法打开网页,导致不能进入。

    如下截图:

    解决方法:

    在目录C:UsersXXXXXAppDataLocalAtlassianSourceTree 下创建文件accounts.json 

    注意:XXXXX代表登录系统用户名

    accounts.json 中添加以下代码:

    [
    {
    "$id": "1",
    "$type": "SourceTree.Api.Host.Identity.Model.IdentityAccount, SourceTree.Api.Host.Identity",
    "IsDefault": false,
    "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.Api.Account.Basic.BasicAuthCredentials, SourceTree.Api.Account.Basic",
    "Username": "username@email.com",
    "Email": null,
    "AvatarURL": null,
    "AuthenticationScheme": {
    "$type": "SourceTree.Api.Account.Basic.BasicAuthAuthenticationScheme, SourceTree.Api.Account.Basic",
    "Value": "用户名/密码",
    "Name": "Basic",
    "Description": "密码",
    "HeaderValuePrefix": "Basic",
    "UsernameIsRequired": true
    },
    "Id": "username@email.com",
    "EmailHash": "$2b$11$wgr1TJNVKwiK/dQBd3HKm.2vhJdNmcNbWtb1SQQGgocCxWzQCGZaW",
    "DisplayName": null
    }
    }
    ]

    重新启动软件后,提示信息如下截图:

    根据自己需求,下载安装;然后重新启动软件,就可以成功进入界面。

  • 相关阅读:
    latin1字符集的数据转换为utf8字符集
    mysql使用utf8mb4经验吐血总结
    字符集GBK和UTF8的区别说明
    10分钟学会理解和解决MySQL乱码问题
    MySQL大小写敏感总结
    分区表基本类型
    form表单提交的几种方法
    Redis面试题及分布式集群
    ELK
    Linux下的crontab定时执行任务命令详解
  • 原文地址:https://www.cnblogs.com/happybread/p/8990216.html
Copyright © 2011-2022 走看看