I use a server with Ubuntu and installed Git to share code remotely.
I created a Git user with the command:
$ sudo adduser git
What command should I use to remove a user?
I use a server with Ubuntu and installed Git to share code remotely.
I created a Git user with the command:
$ sudo adduser git
What command should I use to remove a user?
userdel
is for this:
$> sudo userdel git
If you want to remove the user's home folder, use the -r
$> sudo userdel -r git