Removing Packages That Where Cloned w/ Terminal

So lets say you git clone

git clone https://github.com/hmlendea/geforcenow-electron.git

it installs under geforcenow-electron

how would you go about removing everything you installed?

rm -rf geforcenow-electron/
?

Technically, cloning a git repository doesn’t install a package. It just copies it in a directory.
Or do you miss the installation step in your description?

1 Like

Try this:

git clean -n (dry-run)

git clean -f (force)

git clean --help (more options to read)

That deletes all untracked files. Official the files you installed in that folder.

2 Likes

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.