kofa
(István Kovács)
July 2, 2023, 2:43pm
13
Here’s my build script, which I have posted several times. You’ll need to come darktable first, and install the build dependencies listed in the README file.
You could try a git status. A git pull will just add new modifications to your local working copy, but if you have modifications locally that do not conflict with incoming ones, your copy could still remain dirty.
git checkout . will overwrite your local changes with the master copy.
This is my shell script to update and build darktable:
#!/bin/bash
renice -n 19 -p $$
ionice -c 3 -p $$
rm -rf ~/.cache/darktable/cached_kernels*
cd ~/darktable ;
git clean -d -f -x ;
git submodule update
git …