Gitkraken stuck at opening repo

前端 未结 24 1848
野的像风
野的像风 2020-12-30 19:59

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 i

24条回答
  •  没有蜡笔的小新
    2020-12-30 20:28

    Check your project for large generated directories, like node_modules, which git isn't configured to ignore. If you don't tell git to ignore those (often very large) directories, Kraken will try to index them and will become overwhelmed by the task.

    I had this problem too. Once I added the "node_modules" dir to the .gitignore file,

    echo node_modules >> .gitignore
    

    and restarted the Kraken client, it worked like a charm.

提交回复
热议问题