gitkraken

How to view the git history of a specific file using GitKraken similar to PhpStorm/WebStorm

夙愿已清 提交于 2019-12-03 03:31:42
问题 I DON'T care about looking at the git history of a file that has been marked as "modified". What I want is something akin to what WebStorm/PhpStorm have where you can select any file in your project (modified or NOT) and inspect it's git history and all the changes to that file. I also DON'T want to have to look down the list of the git tree, and click on each one to see which files were commited. 回答1: You can use the fuzzy finder in GitKraken to accomplish this. While in the repository Press

Gitkraken stuck at opening repo

纵饮孤独 提交于 2019-11-30 08:09:42
Every time I open gitkrarken it gets stuck at opening repo icon. I can't open/clone/init repo. I heard some others have the same problem but no one seems to know why this is happening and what the solution is. Can anyone help with this? UPDATE 1 Reinstalled it. Still having the same problem Close gitkraken and go to your home directory. Delete the hidden folder ".gitkraken". The folder ".gitkraken" will be created automatically upon restart. This solution works for me. For mac and linux users: rm ~/.gitkraken Not a proper solution, but I'm having the same problem. I've been able to work around

GitKraken won't let me clone from a private repo on GitHub

狂风中的少年 提交于 2019-11-29 16:43:36
问题 I've tried cloning a private repo (that I have access to) on github and get this msg: Clone Failed Could not connect to 'origin'. Double-check your remote url, then make sure you have access to do that action on that remote and try again. I run windows 10, I have connected kraken to github and ssh key works and I can push and pull repos to my other github repos that are public just fine. I was also able to clone the repo from the command line just fine. 回答1: For some reason, GitKraken does

Gitkraken stuck at opening repo

我只是一个虾纸丫 提交于 2019-11-29 10:48:05
问题 Every time I open gitkrarken it gets stuck at opening repo icon. I can't open/clone/init repo. I heard some others have the same problem but no one seems to know why this is happening and what the solution is. Can anyone help with this? UPDATE 1 Reinstalled it. Still having the same problem 回答1: Close gitkraken and go to your home directory. Delete the hidden folder ".gitkraken". The folder ".gitkraken" will be created automatically upon restart. This solution works for me. For mac and linux

Git图形化工具

泄露秘密 提交于 2019-11-26 14:41:46
1. GitKranken 集成GitHub等登录(有按钮可以直接把ssh key加入到GitHub上) 使用ssh key登录时,可能要在Perferences->Authentication中专门重新生成Gitkraken的公私钥,因为用Git生成的公私钥有可能算法或秘钥长度不同,不符合Gitkraken的要求,会报错。然后选择使用新生成的公私钥,并在服务端导入ssh公钥。 左侧分支树 LOCAL下面是所有本地fetch过的分支,及并不是clone时就会把所有分支搞下来 REMOTE下面是远程仓库所有的仓库,一般分支都在origin下面 所有分支都是用同一个文件目录 双击分支是切换到该分支,本地目录的文件会切换过去 单击分支是高亮右侧图中该分支的最新指针点 右侧分支图 最左侧的标签指明了该分支最新的指针点的位置,右侧的电脑图标说明是本地分支,圆圈说明是远程分支,同时画了本地和远程分支 大的有图标的点都是人的commit 有的实心点都是merge的点 如果之前做的是rebase,那么不会形成merge的点,会直接移动到同一条线 一般来说一条竖线就是一个分支,但是如果不同分支间做过rebase,那么这些分支可能在同一条线上,只是最新的指针点不同, 相当于rebase时GitKraken会帮你把俩个分支画到一条线上,也就是说两个分支有时候可以有一部分合在了一起