Details
check for how long a process has been running
Example for process with a PID of 96109: ps -p "96109" -o etime=
The output will be like 02-08:51:24 <- [[dd-]hh:]mm:ss
Also examine the possibility of formatting the preceding output into columns or better format.
tracking/untracking git files
untrack git update-index --assume-unchanged path/to/file
track again git update-index --no-assume-unchanged path/to/file
Details
check for how long a process has been running
Example for process with a PID of 96109:
ps -p "96109" -o etime=The output will be like 02-08:51:24 <- [[dd-]hh:]mm:ss
Also examine the possibility of formatting the preceding output into columns or better format.
tracking/untracking git files
untrack
git update-index --assume-unchanged path/to/filetrack again
git update-index --no-assume-unchanged path/to/file