7,540
edits
Changes
→Pull request
Ha a review-el jóváhagyja a változtatásainkat, akkor merge-ölni tudja azokat a távoli master branch-be. A review és merge felületet már mindig a git szolgáltatók adják, ez már nem része a GitKraken-nek.
<br>
<br>
=Troubelshooting=
==File watcher failed to start for this repository==
https://techsparx.com/blog/2018/02/gitkraken-inotify.html<brr>
Type this command:
$ cat /proc/sys/fs/inotify/max_user_watches
8192
This is the limit on your computer.
Each inotify watch consumes a modest amount of memory. On a 64-bit computer like this one, each consumes 1 KB, so 8,192 watches consumes about 8 MB of memory. On a 16GB main memory computer that's a drop in the bucket.
Temporarily increasing the limit is this simple:
# echo 99999 > /proc/sys/fs/inotify/max_user_watches
After which you'll get this:
$ cat /proc/sys/fs/inotify/max_user_watches
99999
To make a permanent change, set fs.inotify.max_user_watches= in sysctl settings. On some systems (Debian/Ubuntu/etc) those settings are in /etc/sysctl.conf and on some others there will be a file in /etc/sysctl.d.
After editing the sysctl settings, run this:
# sysctl -p
fs.inotify.max_user_watches = 99999
Putting it on one line:
# echo fs.inotify.max_user_watches=99999 | sudo tee -a /etc/sysctl.conf && sudo sysctl -p
Or on certain other systems:
# echo fs.inotify.max_user_watches=99999 | sudo tee /etc/sysctl.d/40-max-user-watches.conf && sudo sysctl --system