gitkraken

Windows 10 GitKraken And Github - failed to get server certificate: The handle is in the wrong state for the requested operation

穿精又带淫゛_ 提交于 2021-02-17 22:26:41
问题 I noticed the fix on the below thread for windows 7 but I am seeing it on windows 10, multiple boxes at my work and others reporting on gitkraken slack channel. Anyone fixed this on windows 10? Windows 7 thread link: GitKraken And Github - failed to get server certificate: The handle is in the wrong state for the requested operation 回答1: Credit to Kef in the comments. Changing the remote origin from https to http fixed it for me. Disclaimer: I do not know if this has any side effects. If it

Why Gitkraken does not display any logs in big repos?

老子叫甜甜 提交于 2021-01-29 08:57:13
问题 I have a quite big repo with exactly 26731 commits, the GitKraken does not show any logs for this repo. It works fine on other repos but not in this repo , although it recognizes the branches and tags but it does not display any logs in any branch (as the below image). Things I have tried but didn't work: Adjust the preference to display all logs. Remove the ~/.gitkraken folder (to clear any destructive caches if any exists). Uninstall/Install the GitKraken with the latest version.

Git returns 'failed to run repack' and 'inflate returned' errors

不羁岁月 提交于 2021-01-28 10:48:23
问题 I am facing a problem with a Git repository stored on GitLab. It seems to be a repository issue only affecting this specific repository, as all other projects hosted on GitLab are working fine. It seems I can personally push, pull, and checkout branches using GitKraken, but when I try to pull from Git Bash I get the following: $ git pull Auto packing the repository in background for optimum performance. See "git help gc" for manual housekeeping. error: Could not read

GitKraken won't let me open my Private Repository on GitLab

萝らか妹 提交于 2020-06-24 11:16:00
问题 So, in addition to GitKraken won't let me clone from a private repo on GitHub I get this screen when opening my GitLab Repo: Anyone got a solution of how to make my Repo 'non-private' or how to make GitKraken let me open this without the Pro Plan? Already tried: Generating new SSH Key in GitKraken Removing Repo, Generate new GitLab connection, Clone Repo Checked GitLab: GitKraken is an Authorized applications Git Pull via command line gives no trouble, so no permission issue ... 回答1: I had

GitKraken won't let me open my Private Repository on GitLab

谁说胖子不能爱 提交于 2020-06-24 11:15:06
问题 So, in addition to GitKraken won't let me clone from a private repo on GitHub I get this screen when opening my GitLab Repo: Anyone got a solution of how to make my Repo 'non-private' or how to make GitKraken let me open this without the Pro Plan? Already tried: Generating new SSH Key in GitKraken Removing Repo, Generate new GitLab connection, Clone Repo Checked GitLab: GitKraken is an Authorized applications Git Pull via command line gives no trouble, so no permission issue ... 回答1: I had

GitKraken won't let me open my Private Repository on GitLab

风流意气都作罢 提交于 2020-06-24 11:14:44
问题 So, in addition to GitKraken won't let me clone from a private repo on GitHub I get this screen when opening my GitLab Repo: Anyone got a solution of how to make my Repo 'non-private' or how to make GitKraken let me open this without the Pro Plan? Already tried: Generating new SSH Key in GitKraken Removing Repo, Generate new GitLab connection, Clone Repo Checked GitLab: GitKraken is an Authorized applications Git Pull via command line gives no trouble, so no permission issue ... 回答1: I had

GitKraken使用教程-基础部分(5)

若如初见. 提交于 2020-03-15 14:02:14
7. 提交代码 1) 查看文件改动 修改了某个文件后,在程序右侧会出现已修改文件的列表(如图 1‑1),这里以Test.git 为例,修改了19264.h 的文件编码,将其改为utf8。 Unstaged Files 方框内就会出现为19264.h 图 1‑1尚未暂存的文件 点击这一项,GitKraken的左侧区域和中央区域就会变成文件比较器,如图。 图 1‑2文件比较器(Diff View) 该图是以 Diff View 的形式显示文件,也就是显示当前提交和上次提交时该文件改动的位置。红色部分表示这次提交所删除的内容,绿色部分表示这次提交所增加的内容。 点击Diff View旁边的File View(图中的右上角)即可用普通的文本显示器形式查看文件内容。 这里可以看到改动的部分是将乱码的内容全部重新正确解码了。 2) 按文件进行提交 对代码进行修改后,如果认为这次修改的所有文件都没有问题,可以将所有文件全部存入暂存区,然后填写CommitMessage,具体步骤如下: 点击右侧 (见图 1‑3中显示的绿色按钮)按钮可以把已经修改的所有文件存放到暂存区中。 图 1‑3 暂存文件 如果只想提交某几个文件,鼠标移至该项所在位置,右侧即会出现 按钮,如图 1‑4,点击就可以将这一个文件存放到暂存区(图 1‑4)。   2. 存到暂存区后,在暂存区就会出现这个文件: 图 1‑4