sourcetree

Controlling git repository remotely

怎甘沉沦 提交于 2019-11-28 14:18:50
My local git repository is on a Linux, on a vmware. I want to know which file had been modified (Or which file is new), and controlling these events through GUI-tools. Something like this: I did it before using TortoiseSVN, this is working if my repository and GUI-tools be on same OS, but now my repository is on Linux and I need some GUI-tools on my windows to control the repository PS: I don't want to make a copy of the repository on the windows, and sync both repositories. you could use any GUI which uses git commandline (which is NOT TortoiseGit, but for example gitextensions, sourcetree,

sourcetree跳过登录的方法

橙三吉。 提交于 2019-11-28 09:43:49
sourcetree是款免费的Git可视化工具,对于版本库较小的Git项目进行管理非常方便。但是sourcetree安装后第一次使用需要登录bitbucket帐号(最新版),由于某些原因登录帐号有困难,下面介绍一下如果跳过登录。 1、安装sourcetree 下载地址: https://www.sourcetreeapp.com/ 2、安装之后,转到用户本地文件夹下的 SourceTree 目录,没有则新建 %LocalAppData%\Atlassian\SourceTree\ 3、新建 accounts.json 文件 4、输入以下内家保存即可 [ { "$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

SourceTree 免登录跳过初始设置

拜拜、爱过 提交于 2019-11-28 09:43:33
原文:http://www.cnblogs.com/xiofee/p/sourcetree_pass_initialization_setup.html SourceTree 安装之后需要使用账号登陆以授权,以前是可以不登陆的,但是现在是强制登陆。 虽然是免费授权,但是碰上不可抗力因素,登陆不是很方便,这里记录一下跳过这个初始化的步骤。 安装之后,转到用户本地文件夹下的 SourceTree 目录,没有则新建 %LocalAppData%\Atlassian\SourceTree\ 新建 accounts.json 文件 %LocalAppData%\Atlassian\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": {

SourceTree 免登录跳过初始设置

旧时模样 提交于 2019-11-28 09:43:21
SourceTree 安装之后需要使用账号登陆以授权,以前是可以不登陆的,但是现在是强制登陆。 虽然是免费授权,但是碰上不可抗力因素,登陆不是很方便,这里记录一下跳过这个初始化的步骤。 安装之后,转到用户本地文件夹下的 SourceTree 目录,没有则新建 %LocalAppData%\Atlassian\SourceTree\ 新建 accounts.json 文件 %LocalAppData%\Atlassian\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安装跳过登录

落爺英雄遲暮 提交于 2019-11-28 09:42:55
安装 SourceTree 时,需要使用atlassian授权,因为各种原因无法完成授权,现提供跳过 atlassian账号 授权方法。 安装之后,转到用户本地文件夹下的 SourceTree 目录,没有则新建: %LocalAppData%\Atlassian\SourceTree\ 新建 accounts.json 文件 %LocalAppData%\Atlassian\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

SourceTree安装与使用

我的梦境 提交于 2019-11-28 06:23:56
一、简介: 一个用于Windows和Mac的免费Git客户端。 Sourcetree简化了如何与Git存储库进行交互,这样您就可以集中精力编写代码。通过Sourcetree的简单Git GUI可视化和管理存储库。 官网下载地址: Sourcetree | Free Git GUI for Mac and Windows 本文介绍的版本为sourcetree 2.5.5; 二、使用方法 1、安装 下载完成后,在安装SourceTree的过程中,需要通过账户登录,但注册或登录界面可能根本无法打开,导致软件无法正常安装。 解决方法: (1)、在目录C:\Users\{youruser}\AppData\Local\Atlassian\SourceTree 下创建文件accounts.json ,注意:{youruser}需要替换为登录系统用户名。如我的电脑路径为: C:\Users\Administrator\AppData\Local\Atlassian\SourceTree。写入如下内容: [ { "$id": "1", "$type": "SourceTree.Api.Host.Identity.Model.IdentityAccount, SourceTree.Api.Host.Identity", "Authenticate": true, "HostInstance": {

Controlling git repository remotely

三世轮回 提交于 2019-11-27 08:31:51
问题 My local git repository is on a Linux, on a vmware. I want to know which file had been modified (Or which file is new), and controlling these events through GUI-tools. Something like this: I did it before using TortoiseSVN, this is working if my repository and GUI-tools be on same OS, but now my repository is on Linux and I need some GUI-tools on my windows to control the repository PS: I don't want to make a copy of the repository on the windows, and sync both repositories. 回答1: you could

sourcetree将本地工程推送到github并关联

白昼怎懂夜的黑 提交于 2019-11-26 15:59:21
1.在本地用idea创建好工程,名字可用临时名 2.在github上创建repository,名字不要和1中重名 3.将github工程克隆到本地 4.将1中工程文件夹中的文件复制到3中克隆过来的文件夹内 5.自己设置.gitignore将不要上传的文件配置好 6.idea重新打开克隆到本地的那个文件夹即可 7.删除1的临时文件夹 来源: https://blog.csdn.net/kane0409/article/details/98938265