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

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

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

  • 相关阅读:
    集成信鸽推送!!!
    URI跳转方式地图导航的代码实践
    CocoaPods 的详细使用教程
    学习如何学习
    代码手写UI,xib和StoryBoard间的博弈,以及Interface Builder的一些小技巧
    宏!!!!(拷贝别人的博客的只为了收藏)
    不修改Xcode项目加载Reveal
    关于开发中的常用手段(个人建议)
    ios高级-属性中Copy的使用
    iOS高级-RunLooper
  • 原文地址:https://www.cnblogs.com/happybread/p/8990216.html
Copyright © 2011-2022 走看看