安装Git和图形化软件[SouceTree跳过首次登陆]

标签(空格分隔): 版本控制


安装GIT[客户端]:

下载:[https://git-scm.com/downloads/]

安装:[next到最后]

配置:打开Git Bash

1 因为Git是分布式版本控制系统,所以需要填写用户名和邮箱作为一个标识。
git config --global user.name 'you username'
git config --global user.email 'you [email protected]' 2 查看当前用户配置
git config --global --list
3 查看系统配置
git config --system --list

安装Git和图形化软件[SouceTree跳过首次登陆]-LMLPHP

安装SourceTree[图形化软件]:

说明:sourcetree首次登录需要vpn才能访问目标主机,然而本人手上只有代理没有vpn咋个办嘞?

下载:[https://downloads.atlassian.com/software/sourcetree/windows/ga/SourceTreeSetup-1.10.23.1.exe?_ga=2.163056572.16084660.1520596135-812401212.1520596135]

安装:
1 next到最后,安装好以后,先运行一波,看到需要登录的界面就关掉. 2 定位到用户缓存数据目录:(需要在文件夹选项中 开启不隐藏文件夹和不隐藏文件扩展名)

一般为: C:\Users\{用户名}\AppData\Local\Atlassian

进入sourcetree目录:C:\Users\ {用户名} \AppData\Local\Atlassian\SourceTree

添加一个文件: accounts.json

3 文件内容:

    [
{
"$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
}
] 4 重启sourcetree软件
04-28 04:59