SourceTree 03 - 跳过账号登录直接进入主界面
SourceTree系列第1篇 -->> SourceTree 01 - git 客户端介绍
SourceTree系列第2篇 -->> SourceTree 02 - 下载安装
SourceTree系列第3篇 -->> SourceTree 03 - 跳过账号登录直接进入主界面
SourceTree 跳过账号登录页面,直接打开主界面
这里只需要修改账户相关的文件即可;
1. 找到accounts.json 文件;
* 位置: C:\Users\Administrator\AppData\Local\Atlassian\SourceTree
* 将上面的位置粘贴到文件管理器的路径中,回车(这里的路径要按自己电脑的路径找,可能每个电脑不一样,如果有快速搜索工具,也可以直接搜索 SourceTree 目录即可);
* 回车后会看到很多文件夹和文件(每个人的这个目录可能有所不能);
* 选中 accounts.json 这个文件打开,如果没有这个文件,手动新建一个文本文件,将后缀改为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
}
]
geaosu