Reputation: 460
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.
Upvotes: 11
Views: 15755
Reputation: 7993
there's also to clean the
Users\<username>\AppData\Roaming\.gitkraken\profiles\<random string>\repoSettings
folder to completely clean the cache
Upvotes: 0
Reputation: 34128
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.
Upvotes: 26