If a user leaves or moves to a different part of the company, you should remove or modify their ability to access your GitHub Enterprise instance.

If employees leave the company, you can suspend their GitHub Enterprise accounts to open up seats in your site license while preserving the issues, comments, repositories, gists, and other data they created. Suspended users cannot sign into your instance, nor can they push or pull code.

When you suspend a user, the change takes effect immediately with no notification to the user. If the user attempts to pull or push to a repository, they'll receive this error:

git clone git@[hostname]:john-doe/test-repo.git
Cloning into 'test-repo'...
ERROR: Your account is suspended. Please check with your installation administrator.
fatal: The remote end hung up unexpectedly

Suspending a user from the user admin dashboard

  1. As a site admin, sign in to your GitHub Enterprise instance at http(s)://[hostname]/login.

  2. In the upper-right corner of any page, click . Rocketship icon for accessing site admin settings

  3. In the search field, type the name of the user and click Search. Site admin settings search field

  4. In the left sidebar, click Admin. Admin Tools

  5. Under "Account suspension," in the red Danger Zone box, click Suspend. Suspend button

  6. Provide a reason to suspend the user. Suspend reason

To unsuspend a user from the user admin dashboard

As when suspending a user, unsuspending a user takes effect immediately. The user will not be notified.

  1. As a site admin, sign in to your GitHub Enterprise instance at http(s)://[hostname]/login.

  2. In the upper-right corner of any page, click . Rocketship icon for accessing site admin settings

  3. In the Site Admin settings sidebar, click Suspended users. Suspended users tab

  4. Click the name of the user account that you would like to unsuspend. Suspended user
  5. On the left side of the page, click Admin. Admin tab
  6. Under "Account suspension," in the red Danger Zone box, click Unsuspend. Unsuspend button
  7. Provide a reason to unsuspend the user. Unsuspend reason

Suspending a user from the command line

  1. As a site admin, SSH into your GitHub Enterprise instance:

    ssh -p 122 admin@hostname
    
  2. Run ghe-user-suspend with the username to suspend.

    ghe-user-suspend username
    

Unsuspending a user from the command line

  1. As a site admin, SSH into your GitHub Enterprise instance:

    ssh -p 122 admin@hostname
    
  2. Run ghe-user-unsuspend with the username to unsuspend.

    ghe-user-unsuspend username