Solved Command to deinstall and reinstall an application installed from git

I am somewhat familiar with the install and uninstall processes by pkg and ports, installed Community Solid Server from the git, please point me to the proper method of completely removing and reinstalling this application, installed with the commands:

git clone https://github.com/CommunitySolidServer/CommunitySolidServer.git cd CommunitySolidServer npm ci

Thank you.
 
Seriously, you should ask there. Chances are there is no such thing available at all. I mean, there's more than one reason package management systems exist ... one of them is to correctly keep track of installed files.
 
If you can find or make a list of files by command line that it installed.

ls -l can help with times of install, unless the timestamps are of when that file was changed on a server and not on your computer.
 
If you can find or make a list of files by command line that it installed.

ls -l can help with times of install, unless the timestamps are of when that file was changed on a server and not on your computer.
ls -l CommunitySolidServer/
total 596
-rw-r--r-- 1 myname myname 73342 Jul 24 19:06 CHANGELOG.md
-rw-r--r-- 1 myname myname 116 Jul 24 19:06 CODE_OF_CONDUCT.md
-rw-r--r-- 1 myname myname 1365 Jul 24 19:06 Dockerfile
-rw-r--r-- 1 myname myname 1083 Jul 24 19:06 LICENSE.md
-rw-r--r-- 1 myname myname 9849 Jul 24 19:06 README.md
-rw-r--r-- 1 myname myname 9361 Jul 24 19:06 RELEASE_NOTES.md
drwxr-xr-x 2 myname myname 3 Jul 24 19:06 bin
-rw-r--r-- 1 myname myname 188 Jul 24 19:06 commitlint.config.js
drwxr-xr-x 5 root myname 8 Jul 24 19:35 community-server-recipes
drwxr-xr-x 8 myname myname 22 Jul 24 19:06 config
drwxr-xr-x 13 myname myname 17 Jul 24 19:30 dist
drwxr-xr-x 4 myname myname 6 Jul 24 19:06 documentation
-rw-r--r-- 1 myname myname 772 Jul 24 19:06 jest.config.js
-rw-r--r-- 1 myname myname 219 Jul 24 19:06 jest.coverage.config.js
drwxr-xr-x 739 myname myname 740 Jul 24 19:30 node_modules
-rw-r--r-- 1 myname myname 1149047 Jul 24 19:06 package-lock.json
-rw-r--r-- 1 myname myname 6768 Jul 24 19:06 package.json
drwxr-xr-x 2 myname myname 5 Jul 24 19:06 scripts
drwxr-xr-x 12 myname myname 13 Jul 24 19:06 src
drwxr-xr-x 12 myname myname 14 Jul 24 19:06 templates
drwxr-xr-x 9 myname myname 11 Jul 24 19:06 test
-rw-r--r-- 1 myname myname 348 Jul 24 19:06 tsconfig.json
-rw-r--r-- 1 myname myname 190 Jul 24 19:06 tsdoc.json
-rw-r--r-- 1 myname myname 131 Jul 24 19:06 typedoc.json
$

sidetone Thank you. This is what it says.
 
Back
Top