美文网首页
修改sourcetree默认登录账号和密码+跳过注册方法

修改sourcetree默认登录账号和密码+跳过注册方法

作者: Coding测试 | 来源:发表于2019-03-28 14:37 被阅读0次

    首次登陆后sourcetree会默认登陆账号和密码,换账号后如何修改请看下面:

    删除C:\Users\%USERNAME%\AppData\Local\Atlassian\SourceTree 目录下的passwd文件, 能移除掉保存的密码。

    同样:

    删除C:\Users\%USERNAME%\AppData\Local\Atlassian\SourceTree 目录下的userhosts文件, 能移除掉保存的用户名

    两个目录是固定的可以直接拷贝(这些文件夹都是隐藏的)


    1、在系统的C:\Users\Administrator\AppData\Local\Atlassian\SourceTree文件夹(此位置固定)中有一个accounts.json的文件,没有的话新建一个。

    2、复制以下内容到account.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

      }

    ]

    相关文章

      网友评论

          本文标题:修改sourcetree默认登录账号和密码+跳过注册方法

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