sourceTree

今天使用了一个特别好用的软件  sourceTree 类似于mysql的sqlyog

SourceTree.exe 

 sourceTree_第1张图片

主要用途是从git上面拉取项目或者上传项目可以自动提交

下载这个软件需要从微软官网下载一个netFramework4.7.1不然你是用不了的

https://www.microsoft.com/en-us/download/details.aspx?id=56115这是下载地址

下载完后打开 文件夹在地址栏输入

%LocalAppData%\Atlassian\SourceTree\

然后创建一个json文件,文件名为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
  }
]
保存完成后重启就可以直接用了 

你可能感兴趣的:(sourceTree)