Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

ubuntu gitkraken unable to access var

I am trying to use ubuntu for php laravel project, I have setup all the requirements but now I am facing problem with gitkraken. I am trying to clone repo on var/www/html but I cant even enter in var folder please help enter image description here

like image 944
Rox Avatar asked Jan 29 '23 10:01

Rox


2 Answers

You need to uninstall this application and install it from the website.. the same happened with me .. for the main reason why this is happening .. you may check this answer askUbuntu

like image 166
Hamza Mohamed Avatar answered Jan 31 '23 02:01

Hamza Mohamed


Although the accepted answer is not technically incorrect, it did not actually solve the problem for me when running Ubuntu 18.04.

You need to install the application from the website, but you MUST do so using the command-line like so:

wget https://release.gitkraken.com/linux/gitkraken-amd64.deb
sudo dpkg -i gitkraken-amd64.deb

If you try to install it by just double-clicking the .deb file in your home directory, it will not work as snap does some funky things with it.

like image 41
Michael Ziluck Avatar answered Jan 31 '23 02:01

Michael Ziluck