SourceTree跳過註冊安裝使用

高山低谷發表於2019-11-13

上一篇講到了一些關於git工作流中的一些常用命令方法,接下來介紹一款git的視覺化程式碼管理工具SourceTree。

一、下載和安裝

下載地址:www.sourcetreeapp.com/

SourceTree跳過註冊安裝使用

SourceTree跳過註冊安裝使用

這個時候會要求我們註冊,如果你有谷歌賬號,並能上外網那就直接登入吧。 不然 就按照下面這樣的操作來: 先關閉該程式,接下來複制複製%LocalAppData%\Atlassian\SourceTree\到我的電腦位址列敲回車,在該資料夾下面新增 accounts.json檔案

SourceTree跳過註冊安裝使用
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軟體,這樣直接跳過註冊了。

SourceTree跳過註冊安裝使用

繼續下一步,會讓你選擇用什麼git

SourceTree跳過註冊安裝使用

如果使用git客戶端,選擇我不想使用Mercurial即可

二、 使用方法

接下來新增你的祕鑰

SourceTree跳過註冊安裝使用

使用git flow開發

SourceTree跳過註冊安裝使用

以上就是SourceTree的安裝和使用了。

上一篇git命令式開發

相關文章