Government best practices

Account Management

Organization or user

Agencies should be represented by GitHub organizations. Think of these as roughly analogous to a Facebook Page. Organizations do not have their own login, but are administered by users. Organizations have their own, distinct online presence, can own repositories, and can have unlimited members and teams.

Teams

Within organizations, users are grouped into teams. Teams often reflect real-world groupings and organizational structure within your agency, or because users can belong to multiple teams, can be custom tailored to specific projects. Just like your agency, there might be a new media team, a internal tools team, etc. Organizations can have unlimited teams, and teams can have unlimited users.

Team membership not publicly disclosed and is often used to delegate access or permissions on three levels: administration access, read-only (“pull”) access, and read-write (“push and pull”) access. This way, a team, representing a subunit of your organization, can have complete control over their repositories.

For flexibility and ease-of-use, best practices suggest that whenever possible, prefer social or policy constraints over technical constraints when it comes to delegating repository ownership. Often agencies can have a better experience by liberally granting team permissions and culturally setting expectations as to ownership and access.

Publicizing Teams

By default, teams remain visible only to members of the organization. If you would like to create a public presence for each team, many private-sector GitHub users have, and government agencies are beginning to leverage the native GitHub Pages functionality to create a public presence which is fully customizable and brandable. Some great examples of this are http://twitter.github.io/, http://square.github.io/, and http://gsa.github.io/federal-open-source-repos/.

To begin, simply create a repository in your organization called [username].github.io, for example, if your organization is agency, the repository would be agency/agency.github.io. From there, you can push any static or Jekyll-enabled files to the master branch, and they will become visible at agency.github.io. You can even set up a redirect, such that developers.agency.gov displays the branch’s content.

Like the examples above, it may be possible to leverage the GitHub API to dynamically display all your organization’s teams or projects. For more information, see the GitHub Pages and developer help documentation.

Requiring users to establish purpose-specific accounts

In short, there should be a one-to-one relationship between each Github user account (a login) with one real-world person (“a human”). Just like each human at your agency has an e-mail address and a computer login, each individual should have their own GitHub login. Users can then join one or more Organizations, again just like in the real world. I can be a USDA employee, for example, (and thus a member of the USDA organization), and also be a member of the Under Water Basket Weaving Club. GitHub will can automatically disambiguate the context of my actions, and reflects that context in all URLs.

If an individual already has a GitHub account, they should add their government email address to their account (by design, users can have multiple email address per account), and if they’re already using Git, configure Git on their work computer to use that email for those repositories. If they’re a new user, they should create a new account using their (individual) government email address. This is strongly preferred over requiring government employees to create distinct joe_abc_agency accounts to distinguish their personal use.

GitHub’s a social network. GitHub’s passionate about the best way to build software so that’s its a positive experience for everyone involved. The GitHub community feel that it should be a social experience, interacting with humans, not software. As users start to stretch community norms, that ideal workflow begins to deteriorate. As the TOS notes:

One person or legal entity may not maintain more than one free account

That’s not because too many accounts are hard on the servers or because developers want to make things harder on agencies. It’s because we want a user to be a human, to have an identity. To be seen as a person. To be social. To interact. To grow communities around shared causes. That’s what open source is all about, and when a user is not a person, but an anonymous icon, that get’s a lot harder.

Gravatar

Account icons, for both users and organization are maintained by Gravatar, a third party service which simply correlates a profile images with an email address. Lots of website use Gravatar for their profile images, like WordPress, Hootsuite, Disqus, and Stack Overflow.

To set up your Gravatar, simply follow the instructions on your profile page. The email address you associate with your Gravatar need not be public, and need not be the same with which you receive notification or make commits.

Social Media Registry

If you’re a US Federal Agency, be sure to add your organization account to the US Social Media Registry for optimum discoverability.

I already have a GitHub account, do I need to create a new one for my agency?

  1. Navigate to the e-mail settings page and add and confirm your .gov e-mail address.
  2. Ensure that notifications for the organization go to your .gov account on the notifications settings page.
  3. Create a new repository, or clone and navigate to your team’s repository on your computer
  4. Configure the repository to use your .gov account by issuing the command git config user.email your@email.gov (note, this does not have the --global flag as many tutorials suggest, we want the setting to stay within the repository so that commits to other repositories continue to come from your personal account)
  5. Repeat step 4 with each additional repository you contribute to in your official capacity

Does each developer need an account?

Contractors and employees should use their individual accounts to commit code (rather than say an agency account), respond to support forums, etc., just as they would on any other project, or on any other social network, however to ensure records retention and that the commits come from an official source (e.g., to delineate commits in one’s official capacity versus commits in one personal capacity), the account should be associated with a .gov e-mail address.

It is arguably GitHub’s secret sauce (making coding social as their slogan goes), provides a level of transparency and accountability, and is a long-standing norm in the open-source software community, not to mention, the fundamental software underlying the website. Almost without exception, all government agencies that have released open-source software, both on GitHub and otherwise have followed this model.