1
I use an Ubuntu server 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?
1
I use an Ubuntu server 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?
3
The userdel
this is what it’s for:
$> sudo userdel git
If you want to remove the folder home user, use the option -r
$> sudo userdel -r git
Browser other questions tagged linux ubuntu server
You are not signed in. Login or sign up in order to post.
Have you tried
sudo userdel userName
? Fountain– Jefferson Quesado