An introduction to GitHub

How to use GitHub to create, manage, and publish website content.

Note

In this first training video, Content Strategy and Design Specialist for GSA’s Technology Transformation Services (TTS), Malaika Carpenter, breaks down how to use GitHub into easy, practical steps and demonstrates ways to use this tool to create, manage and publish website content.

What is GitHub?

GitHub is a web-based interface that uses Git, the open source version control software that lets multiple people make separate changes to web pages at the same time. As Carpenter notes, because it allows for real-time collaboration, GitHub encourages teams to work together to build and edit their site content.

How can GitHub help my team and me?

GitHub allows multiple developers to work on a single project at the same time, reduces the risk of duplicative or conflicting work, and can help decrease production time. With GitHub, developers can build code, track changes, and innovate solutions to problems that might arise during the site development process simultaneously. Non-developers can also use it to create, edit, and update website content, which Carpenter demonstrates in her tutorial.

How do I speak GitHub?

There are some common terms teams will need to understand when using GitHub. They are:

  • Git — a tool that allows developers and others to use version control
  • GitHub — one of many web interfaces for using Git
  • Organization (org) — a grouping mechanism allowing teams to collaborate across many projects at once
  • Repository (repo) — a folder in which all files and their version histories are stored
  • Branch — a version of the repo that allows work without affecting other branches. Repos may have many branches for different possible changes being tested or considered, along with a default branch that serves as the source of truth.
  • Fork — a new repository that inherits from a parent “upstream” repo. It is used to suggest changes to an “upstream” public repo by someone who doesn’t have access to edit in the repo’s home org.
  • Markdown (.md) — a way to write content that converts plain text to formatted text.
  • Commit Changes — a saved record of a change made to a file within the repo.
  • Pull Request (PR) — a request for changes made to a branch to be pulled into another branch. Allows multiple users to see, discuss and review work being suggested.
  • Merge — after a pull request is approved, the commit will be pulled in (or merged) from one branch to another and then, deployed on the live site
  • Issues — allow users to report issues or bugs and track progress of assigning the fix for the issues.
  • Federalist — a platform that securely deploys a website from a GitHub repository in minutes and lets users preview proposed and published changes.
  • Projects — allows you to use GitHub for project management and tracking a set of issues, either for a specific repo or an entire org
  • Wiki — a section of a repo made for hosting documentation. Documentation may be in the repo’s README files instead.

Becoming fluent in GitHub terminology might seem intimidating at first, but the more team members engage with the platform, the easier it is to understand the ins and outs of GitHub.

How do I use GitHub?

In the demonstrations on this page, both presenters show how files are changed and merged in GitHub. This can be done by any member on the team, developers and non-developers, that has access to a GitHub repository. The following is a step-by-step method in which GitHub users can develop their websites:

  • Step 1 — Team members will open an issue via a project board.
  • Step 2 — Team members will create a new branch from the most recent version of the main branch in the repository where the entire team works to avoid conflicts.
  • Step 3 — Team members will add commits (edits or changes) to their respective branches.
  • Step 4 — Team members will open a pull request in which users can assign other team members to review content changes and internally discuss the details of the commits.
  • Step 5 — After waiting for the Federalist build to complete, team members can preview the change on a test version of the website and request reviewers to approve or comment on the change. Once the reviewers approve the pull request, the commits merge into the main branch and are published on the live site.

What else do I need to know about GitHub?

When starting a project using issues and project boards, write your content on external word processors or via Google Docs, and then, save these files to their respective project boards. These steps allow developers and content creators to have a master copy of the file(s), thus helping them track changes over the course of a project.

In addition, developers should consider downloading GitHub Desktop. GitHub Desktop allows users to do everything that could be done on GitHub’s web interface, but locally on a user’s machine.

GitHub is built to be a collaborative interface. By allowing multiple users to work on the same project simultaneously and requiring cross-team approval for pull requests, GitHub not only allows for, but encourages collaboration within design teams. This type of collaboration can help produce a higher level of quality control.

Additional resources