Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

GitKraken config file (Windows)

Where can I find the config files for GitKraken on Windows?

GitKraken shows many repositories, which I would not like to be listed in the "recently opened repos" list.

like image 658
Karl Zeilhofer Avatar asked Jun 07 '16 11:06

Karl Zeilhofer


People also ask

Where is GitKraken installed?

GitKraken data is stored in /home/{user}/. gitkraken == ~/. gitkraken .

How do I open a git Kraken repository?

If you're coming from a Git project you already have locally, navigate to File > Open Repo to get started immediately in GitKraken Client.

Does GitKraken install Git?

Unlike other Git GUI clients, GitKraken is not a front-end GUI for your command line; no Git tools are required. It works directly with your repositories with no dependencies, which means a separate Git installation isn't even required.

What is config file in GitHub?

The git config command is a convenience function that is used to set Git configuration values on a global or local project level. These configuration levels correspond to . gitconfig text files. Executing git config will modify a configuration text file.


1 Answers

GitKraken saves its configuration in %AppData%/.gitkraken. Despite missing a file ending, all files here are JSON, so you can open them directly in a text editor. config for instance seems to store general settings such as window location and size.

You can remove a repo from "recently opened repos" by removing it from the localRepoCache in the profiles/<random string>/ subfolder.

like image 189
Gama11 Avatar answered Oct 11 '22 21:10

Gama11