A dynamic web server consists of a static web server plus extra software, most commonly an application server and a database. We call it dynamic because the application server updates the hosted files before sending content to your browser via the HTTP server
When the teacher creates an assignment using GitHub classroom (GHC), it must be associated with a visible repo. The repo must be a template repo. The teacher names the assignment, and makes other decisions for the assignment, such as whether students have admin rights, or the repos are public. Once the teacher creates an assignment, GHC generates an invitation link (URL). This link is then made available to the students in the course. When they accept the invite, they get their own clone of the assignment repo. They can then complete their assignment with the contents of the (template) repo as the starting point, meaning that all repos have consistent names and consistent file structures. Crucially, the names of the repos are based on the assignment name and the students’ GH account names, and instructors have complete access to all of the repos
A new Organization is created for each course offering, because of the clarity and granularity it brings with having a separate account encapsulating the relevant offering’s repos, Teams, and teacher access. This structure and separation also mirrors what is typically seen in LMSs, in particular Moodle which is used at Universidad de La Laguna. For the management of the Organization, the teachers are added with the Owner role. If TAs are also expected to access student repos, they also need to be added with the Owner role. Students, on the other hand, have the standard Member role (or even Outside Collaborator) to ensure they do not have access to any private repos. In the case of group-based assignments, a Team is created within the Organization, with the corresponding group of students. To provide access to the private repos, this is defined by the repo’s Manage access setting, by either specifying students individually or as a Team with (usually) just write access. If this seems like a lot of administrative work for an teacher to manage, it is. This is where GHC alleviates many of the manual process surrounding access to individual and group-based repos, and of course forking repos to follow a consistent naming convention. A Classroom in GHC is associated with a GH Organization, and instructors have the option to either reuse the same GH Organization across multiple Classrooms (i.e. multiple course offerings), or to simply associate with a new Organization each time. Behindthe scenes, GHC is creating the repos, creating Teams, and assigning access to repos for the respective GH Organization
Github Classroom (GHC) is “a teacher-facing tool that uses the GitHub API to enable the GitHub workflow for education”. GHC allows the creation of “classrooms” and “assignments” within classroom. Classrooms provide the means to organise assignments for a course, repos for the assignments, and students to the repos
In courses where students work in teams and all team members have full admin rights on their repos, students must enforce protection rules on important branches of their repos, such as the main
branch. GH provides branch protection rules which prevent a branch from accidental deletion or loss of commit history on the branch due to a force push
. The most common branch configuration option that students use is to require pull request reviews before merging on the main
branch. This option ensures that a pull request cannot be merged into the protected branch before it receives a specific number (which is configurable) of approving reviews
In a GitHub ClassRoom assignment, students get their own “clone” of the template repository specified in the GHC assignment, however it is not a clone in the usual sense. If the teacher changes the template, students who have already accepted the invite cannot just issue a pull and expect to see the changes. There is not direct connection between their repo and the original template. Students who accept the invite after the changes do see the changes however
A static site generator is a tool that generates a full static HTML website based on raw data and a set of templates. Essentially, a static site generator automates the task of coding individual HTML pages and gets those pages ready to serve to users ahead of time. Because these HTML pages are pre-built, they can load very quickly in users’ browsers.
A static web server, or stack, consists of a computer (hardware) with an HTTP server (software). We call it static because the server sends its hosted files as-is to your browser
Git is a Version Control System (VCS). It provides support for storing files and tracking any changes. The files, their histories, and any other information is grouped together in “repositories” (usually abbreviated “repo”). Unlike most earlier VCSs, which stored the repos in a central location, Git is a distributed VCS, a type of version control where the complete codebase—including its full version history—is mirrored on every developer’s computer. A remote repo will be created for a project, and any developer in the project team will own their “local” copy by “cloning” the remote repo. As with any VCS, developers must notify Git of any changes they made to the files in the repo, a commit. This only updates the local repo. The developer must push the changes to notify the “remote” repo and must pull to learn of any changes made by other developers. Because developers can change their “local” copy of the repo independently of each other, when independent streams of work need to be combined there is the possibility for the same file to be changed in inconsistent ways, resulting in “merge conflicts”. Git (and most VCSs) provides mechanisms for understanding and resolving these conflicts.
For GitHub Classroom Glossary terms go here: GitHub Classroom Glossary
For git and GitHub related terms go here: GitHub Glossary
To notify a person on GitHub by using @
before their username. Users in an organization on GitHub can also be a part of a team that can be mentioned.
A token that is used in place of a password when performing Git operations over HTTPS with Git on the command line or the API. Also called a personal access token.
A way to try out new APIs and changes to existing API methods before they become part of the official GitHub API.
A software application combined with just enough operating system (JeOS) to run optimally on industry-standard hardware (typically a server) or in a virtual machine.
The user that is assigned to an issue.
A code you’ll supply, in addition to your GitHub password, when signing in with 2FA via the browser. This code is either generated by an application or delivered to your phone via text message. Also called a “2FA authentication code.”
The branch into which changes are combined when you merge a pull request. When you create a pull request, you can change the base branch from the repository’s default branch to another branch if required.
A method of authentication where the credentials are sent as unencrypted text.
The user-generated description found on a profile: Adding a bio to your profile
The interval of time for your specific billing plan.
The organization email address where GitHub sends receipts, credit card or PayPal charges, and other billing-related communication.
The organization member that manages billing settings for an organization.
Payment plans for users and organizations that include set features for each type of plan.
The “blame” feature in Git describes the last modification to each line of a file, which generally displays the revision, author and time. This is helpful, for example, in tracking down when a feature was added, or which commit led to a particular bug.
To remove a user’s ability to collaborate on an organization’s repositories.
A branch is a parallel version of a repository. It is contained within the repository, but does not affect the primary or main branch allowing you to work freely without disrupting the “live” version. When you’ve made the changes you want to make, you can merge your branch back into the main branch to publish your changes.
A restriction that repository admins can enable so that only certain users or teams can push or make certain changes to the branch.
An organization billing plan where you can collaborate on unlimited public and private repositories, allow or require organization members to authenticate to GitHub using SAML SSO, and provision and deprovision access with SAML or SCIM.
A digital certificate issued by Certificate Authority (CA) that ensures there are valid connections between two machines, such as a user’s computer and GitHub.com and verifies the ownership of a site.
A movable square within a project board associated with an issue or pull request.
A check is a type of status check on GitHub. See “Status checks.”
You can use git checkout
on the command line to create a new branch, change your current working branch to a different branch, or even to switch to a different version of a file from a different branch with git checkout [branchname] [path to file]
. The “checkout” action updates all or part of the working tree with a tree object or blob from the object database, and updates the index and HEAD if the whole working tree is pointing to a new branch.
To choose a subset of changes from a series of changes (typically commits) and record them as a new series of changes on top of a different codebase. In Git, this is performed by the git cherry-pick
command to extract the change introduced by an existing commit on another branch and to record it based on the tip of the current branch as a new commit. For more information, see git-cherry-pick in the Git documentation.
Within nested teams, the subteam that inherits the parent team’s access permissions and @mentions.
A working tree is clean if it corresponds to the revision referenced by the current HEAD. Also see “dirty”.
A clone is a copy of a repository that lives on your computer instead of on a website’s server somewhere, or the act of making that copy. When you make a clone, you can edit the files in your preferred editor and use Git to keep track of your changes without having to be online. The repository you cloned is still connected to the remote version so that you can push your local changes to the remote to keep them synced when you’re online.
The ability to run GitHub Enterprise services across multiple nodes and load balance requests between them.
A repository graph that shows the content additions and deletions for each week in a repository’s history.
A document that defines standards for how to engage in a community.
A person who is designated as an owner of a portion of a repository’s code. The code owner is automatically requested for review when someone opens a pull request (not in draft mode) that makes changes to code the code owner owns.
A collaborator is a person with read and write access to a repository who has been invited to contribute by the repository owner.
A commit, or “revision”, is an individual change to a file (or set of files). When you make a commit to save your work, Git creates a unique ID (a.k.a. the “SHA” or “hash”) that allows you to keep record of the specific changes committed along with who made them and when. Commits usually contain a commit message which is a brief description of what changes were made.
The user who makes the commit.
A repository graph that shows all the commits made to a repository in the past year.
Also known as SHA. A 40-character checksum hash that identifies the commit.
Short, descriptive text that accompanies a commit and communicates the change the commit is introducing.
The branch you use to create a pull request. This branch is compared to the base branch you choose for the pull request, and the changes are identified. When the pull request is merged, the base branch is updated with the changes from the compare branch. Also known as the “head branch” of the pull request.
Also known as CI. A process that runs automated builds and tests once a person commits a change to a configured repository on GitHub. CI is a common best practice in software development that helps detect errors.
The part of a user’s profile that shows their contributions over a period of up to one year, day by day.
A document explaining how people should contribute to your project.
Specific activities on GitHub that will: - Add a square to a user’s contribution graph: “What counts as a contribution” - Add activities to a user’s timeline on their profile: “Contribution activity”
A contributor is someone who does not have collaborator access to a repository but has contributed to a project and had a pull request they opened merged into the repository.
A repository graph that displays the top 100 contributors to a repository.
A GitHub-provided code that users or organizations can use to pay for all or part of their subscription.
A time-based job scheduler in Unix-like computer operating systems.
Used in command lines or scripts to transfer data.
Your personal dashboard is the main hub of your activity on GitHub. From your personal dashboard, you can keep track of issues and pull requests you’re following or working on, navigate to your top repositories and team pages, and learn about recent activity in repositories you’re watching or participating in. You can also discover new repositories, which are recommended based on users you’re following and repositories you have starred. To only view activity for a specific organization, visit your organization’s dashboard. For more information, see “About your personal dashboard” or “About your organization dashboard.”
The base branch for new pull requests and code commits in a repository. Each repository has at least one branch, which Git creates when you initialize the repository. The first branch is usually called main
, and is often the default branch.
A repository graph that shows the packages, projects, and repositories that depend on a public repository.
A repository graph that shows the packages and projects that the repository depends on.
A deploy key is an SSH key that is stored on your server and grants access to a single GitHub repository. This key is attached directly to the repository instead of to a personal user account.
Git will warn you if you’re working on a detached HEAD, which means that Git is not pointing to a branch and that any commits you make will not appear in commit history. For example, when you check out an arbitrary commit that is not the latest commit of any particular branch, you’re working on a “detached HEAD.”
An overview of a GitHub Enterprise instance’s settings and environment.
A diff is the difference in changes between two commits, or saved changes. The diff will visually describe what was added or removed from a file since its last commit.
A folder containing one or more files or folders. You can create directories to organize the contents of a repository.
A working tree is considered “dirty” if it contains modifications that have not been committed to the current branch.
Notifications sent to a user’s email address.
Enterprise accounts allow you to centrally manage policy and billing for multiple organizations. Enterprise accounts are available with GitHub Enterprise Cloud and GitHub Enterprise Server. For more information, see “About enterprise accounts” in the GitHub Enterprise Cloud documentation.
An instance of GraphiQL, which is a “graphical interactive in-browser GraphQL IDE.”
A fast-forward is a special type of merge where you have a revision and you are “merging” another branch’s changes that happen to be a descendant of what you have. In such a case, you do not make a new merge commit but instead just update to this revision. This will happen frequently on a remote-tracking branch of a remote repository.
A branch used to experiment with a new feature or fix an issue that is not in production. Also called a topic branch.
An indented block of code you can create with GitHub Flavored Markdown using triple backticks ``` before and after the code block. See this example.
When you use git fetch
, you’re adding changes from the remote repository to your local working branch without committing them. Unlike git pull
, fetching allows you to review changes before committing them to your local branch.
To get notifications about another user’s contributions and activity.
A Git push that overwrites the remote repository with local changes without regard for conflicts.
A fork is a personal copy of another user’s repository that lives on your account. Forks allow you to freely make changes to a project without affecting the original upstream repository. You can also open a pull request in the upstream repository and keep your fork synced with the latest changes since both repositories are still connected.
A user account billing plan that is free. Users can collaborate on unlimited public repositories with unlimited collaborators.
A gist is a shareable file that you can edit, clone, and fork on GitHub. You can make a gist public or secret, although secret gists will be available to anyone with the URL.
Git is an open source program for tracking changes in text files. It was written by the author of the Linux operating system, and is the core technology that GitHub, the social and user interface, is built on top of.
GitHub Apps provide a service to an entire organization and use their own identity when performing their function. They can be installed directly on organizations and user accounts and granted access to specific repositories. They come with granular permissions and built-in webhooks.
GitHub-specific Markdown used to format prose and code across GitHub. See GitHub Flavored Markdown Spec or Getting started with writing and formatting on GitHub.
A tool that quickly imports source code repositories, including commits and revision history, to GitHub for users.
A GitHub site where employers can post jobs that GitHub users may be interested in.
A subsite for GitHub users and organizations to purchase and install applications that extend and complement their workflow.
Also referred to as Pages. A static site hosting service designed to host your personal, organization, or project pages directly from a GitHub repository.
A section for hosting wiki style documentation on a GitHub repository.
A plain .git
file, which is always at the root of a working tree and points to the Git directory, which has the entire Git repository and its meta data. You can view this file for your repository on the command line with git rev-parse --git-dir
. that is the real repository.
A query language for APIs and a runtime for fulfilling those queries with your existing data.
A defined commit of a branch, usually the most recent commit at the tip of the branch.
The branch whose changes are combined into the base branch when you merge a pull request. Also known as the “compare branch.”
A “Hello, World!” program is a computer program that outputs or displays “Hello, World!” to a user. Since this program is usually very simple, it is often used as an example of a programming language’s basic syntax and serves as a common first exercise for learning a new programming language.
A system or component that is continuously operational for a desirably long length of time.
During the normal execution of several Git commands, call-outs are made to optional scripts that allow a developer to add functionality or checking. Typically, the hooks allow for a command to be pre-verified and potentially aborted, and allow for a post-notification after the operation is done.
Human-readable nicknames that correspond to the address of a device connected to a network.
An auto-generated image used as a default profile photo when users sign up for GitHub. Users can replace their identicon with their own profile photo.
Also known as an IdP. A trusted provider that lets you use SAML single sign-on (SSO) to access other websites.
An organization’s private copy of GitHub contained within a virtual machine that they configure and control.
A third-party application that integrates with GitHub. These can be GitHub Apps, OAuth Apps, or webhooks.
Issues are suggested improvements, tasks or questions related to the repository. Issues can be created by anyone (for public repositories), and are moderated by repository collaborators. Each issue contains its own discussion thread. You can also categorize an issue with labels and assign it to someone.
A static site generator for personal, project, or organization sites.
An automated way to select a visual theme for your Jekyll site without editing or copying CSS files.
A short sequence of bytes used to identify a longer public key.
A password management system in macOS.
A specific word that closes an issue when used within a pull request.
A tag on an issue or pull request. Repositories come with a handful of default labels, but users can create custom labels.
Git Large File Storage. An open source Git extension for versioning large files.
A document that you can include with your project to let people know what they can and can’t do with your source code.
A library used on GitHub to detect blob languages, ignore binary or vendored files, suppress generated files in diffs, and generate language breakdown graphs.
A comment within a pull request on a specific line of code.
An invisible character or characters that symbolize the end of a line in a text file.
A personal account that cannot be accessed by the user. Accounts are locked when users downgrade their paid account to a free one, or if their paid plan is past due.
A section within the GitHub Enterprise interface that contains administrative features.
Markdown is an incredibly simple semantic file format, not too dissimilar from .doc, .rtf and .txt. Markdown makes it easy for even those without a web-publishing background to write prose (including with links, lists, bullets, etc.) and have it displayed like a website. GitHub supports Markdown and uses a particular form of Markdown called GitHub Flavored Markdown. See GitHub Flavored Markdown Spec or Getting started with writing and formatting on GitHub.
A system for annotating and formatting a document.
The default development branch. Whenever you create a Git repository, a branch named main
is created, and becomes the active branch. In most cases, this contains the local development, though that is purely by convention and is not required.
The default branch in many Git repositories. By default, when you create a new Git repository on the command line, a branch called master
is created. Many tools now use an alternative name for the default branch. For example, when you create a new repository on GitHub, the default branch is called main
.
A repository graph that shows all the forks of a repository.
A notification sent to a user by prefacing their username with the @ symbol. Users in an organization on GitHub can also be a part of a team that can be mentioned.
Merging takes the changes from one branch (in the same repository or from a fork), and applies them into another. This often happens as a “pull request” (which can be thought of as a request to merge), or via the command line. A merge can be done through a pull request via the GitHub.com web interface if there are no conflicting changes, or can always be done via the command line.
A difference that occurs between merged branches. Merge conflicts happen when people make different changes to the same line of the same file, or when one person edits a file and another person deletes the same file. The merge conflict must be resolved before you can merge the branches.
A way to track the progress on groups of issues or pull requests in a repository.
A new copy of a repository.
A child team of a parent team. You can have multiple children (or nested) teams.
A repository graph that shows the branch history of the entire repository network, including branches of the root repository and branches of forks that contain commits unique to the network.
An activity view of repositories or people you watch. An organization’s News Feed shows activity on repositories owned by the organization.
When your local copy of a repository is out-of-sync with the upstream repository and you need to fetch the upstream changes before you push your local changes.
Updates, delivered by either the web or email depending on your settings, that give you information about the activities you’re interested in.
A third-party application that uses access tokens rather than passwords to access information for users.
The access token used in OAuth Apps to access information for users.
A user who has been given access to one or more of an organization’s repositories, but has no other access to the organization and is not a member of the organization.
Open source software is software that can be freely used, modified, and shared (in both modified and unmodified form) by anyone. Today the concept of “open source” is often extended beyond software, to represent a philosophy of collaboration in which working materials are made available online for anyone to fork, modify, discuss, and contribute to.
Organizations are a group of two or more users that typically mirror real-world organizations. They are administered by users and can contain both repositories and teams.
Users who have full administrative access to the organization they own.
The default upstream repository. Most projects have at least one upstream project that they track. By default, origin is used for that purpose.
Organization members that have complete administrative access to the organization.
Within nested teams, the main team from which child teams inherit access permissions and @mentions.
A notification about an update in a conversation in an issue or pull request where your username or team was mentioned or where you have previously replied in a comment.
A permanent static hyperlink to a particular web page.
A GitHub account that belongs to an individual user.
The main email address where GitHub sends receipts, credit card or PayPal charges, and other billing-related communication.
A repository that a user has decided to display prominently on their profile.
Scripts that run on the GitHub Enterprise server that you can use to implement quality checks.
Contributions made to a private (vs. public) repository.
Private repositories are only visible to the repository owner and collaborators that the owner specified.
A branch with final changes that are ready to be used or deployed to an application or site.
The page that shows information about a user’s activity on GitHub.
A custom image users upload to GitHub to identify their activity, usually along with their username. This is also referred to as an avatar.
Boards within GitHub that are made up of issues, pull requests, and notes that are categorized as cards in columns.
Protected branches block several features of Git on a branch that a repository administrator chooses to protect. They can’t be force pushed, deleted, have changes merged without required checks passing or required reviews approved, or have files uploaded to it from the GitHub web interface. A protected branch is usually the default branch.
Contributions made to a public (vs. private) repository.
A public repository can be viewed by anyone, including people who aren’t GitHub users.
Pull refers to when you are fetching in changes and merging them. For instance, if someone has edited the remote file you’re both working on, you’ll want to pull in those changes to your local copy so that it’s up to date. See also fetch.
A synonym for read access.
Pull requests are proposed changes to a repository submitted by a user and accepted or rejected by a repository’s collaborators. Like issues, pull requests each have their own discussion forum.
Comments from collaborators on a pull request that approve the changes or request further changes before the pull request is merged.
A repository graph that gives you an overview of a repository’s activity.
A repository graph that shows the frequency of updates to a repository based on the day of week and time of day
To push means to send your committed changes to a remote repository on GitHub.com. For instance, if you change something locally, you can push those changes so that others may access them.
When you successfully push a branch to a remote repository, you update the remote branch with changes from your local branch. When you “push a branch”, Git will search for the branch’s HEAD ref in the remote repository and verify that it is a direct ancestor to the branch’s local HEAD ref. Once verified, Git pulls all objects (reachable from the local HEAD ref and missing from the remote repository) into the remote object database and then updates the remote HEAD ref. If the remote HEAD is not an ancestor to the local HEAD, the push fails.
A synonym for write access.
A permission level on a repository that allows the user to pull, or read, information from the repository. All public repositories give read access to all GitHub users. A synonym for pull access.
A text file containing information about the files in a repository that is typically the first file a visitor to your repository will see. A README file, along with a repository license, contribution guidelines, and a code of conduct, helps you share expectations and manage contributions to your project.
To reapply a series of changes from a branch to a different base, and reset the HEAD of that branch to the result.
A code that helps you regain access to your GitHub account.
GitHub’s way of packaging and providing software to your users.
This is the version of a repository or branch that is hosted on a server, most likely GitHub.com. Remote versions can be connected to local clones so that changes can be synced.
A repository that is used to track the same project but resides somewhere else.
The place where your code is stored: a repository on GitHub, another user’s fork, or even a different server.
A GitHub Enterprise instance that provides redundancy for the primary GitHub Enterprise instance.
A repository is the most basic element of GitHub. They’re easiest to imagine as a project’s folder. A repository contains all of the project files (including documentation), and stores each file’s revision history. Repositories can have multiple collaborators and can be either public or private.
A read-only mirror of repositories for your GitHub Enterprise server instance, located near distributed teams and CI clients.
A visual representation of your repository’s data.
Someone who manages a repository. This person may help triage issues and use labels and other features to manage the work of the repository. This person may also be responsible for keeping the README and contributing files updated.
Required reviews ensure that pull requests have at least one approved review before collaborators can make changes to a protected branch.
Checks on pull requests that ensure all required CI tests are passing before collaborators can make changes to a protected branch.
The action of fixing up manually what a failed automatic merge left behind.
When you revert a pull request on GitHub, a new pull request is automatically opened, which has one commit that reverts the merge commit from the original merged pull request. In Git, you can revert commits with git revert
.
Reviews allow others with access to your repository to comment on the changes proposed in pull requests, approve the changes, or request further changes before the pull request is merged.
The first directory in a hierarchy.
The base operating system and the GitHub Enterprise application environment.
A comment you can save and add to your GitHub user account so that you can use it across GitHub in issues and pull requests.
Named groups of permissions that an OAuth App can request to access both public and non-public data.
A user within a GitHub Enterprise organization. This may be referred to as “seat count.”
A team that is only visible to the other people on the team and people with owner permissions.
A log that lists the last 50 actions or those performed within the last 90 days.
An API request used by an application that acts as a bot, independently of any particular user. For example, an application that runs on a scheduled basis and closes issues where there has been no activity for a long time. Applications that use this type of authentication don’t use a licensed GitHub account so, in an enterprise with a billing plan that allows a certain number of licenses to be used, a server-to-server bot is not consuming one of your GitHub licenses. The token used in a server-to-server request is acquired programmatically, via the GitHub API. See also, “user-to-server request.”
Also called “webhook.” Webhooks provide a way for notifications to be delivered to an external web server whenever certain actions occur on a repository or organization.
Also called SSO. Allows users to sign in to a single location - an identity provider (IdP) - that then gives the user access to other service providers.
A checkpoint of a virtual machine at a point in time.
To combine multiple commits into a single commit. Also a Git command.
SSH keys are a way to identify yourself to an online server, using an encrypted message. It’s as if your computer has its own unique password to another service. GitHub uses SSH keys to securely transfer information to your computer.
A way to test modifications before they are applied to your actual GitHub Enterprise instance.
A visual representation within a pull request that your commits meet the conditions set for the repository you’re contributing to.
Status checks are external processes, such as continuous integration builds, which run for each commit you make in a repository. For more information, see “About status checks.”
A bookmark or display of appreciation for a repository. Stars are a manual way to rank the popularity of projects.
A user or organization’s GitHub plan.
A group of organization members that reflect your company or group’s structure with cascading access permissions and mentions.
Organization members that have a subset of permissions available to organization owners to manage teams.
An organization billing plan that gives you unlimited public and private repositories.
A series of events in a pull request or on a user profile.
A regular Git branch that is used by a developer to identify a conceptual line of development. Since branches are very easy and inexpensive, it is often desirable to have several small branches that each contain very well defined concepts or small incremental yet related changes. Can also be called a feature branch.
A way to explore repositories in a particular subject area, find projects to contribute to, and discover new solutions to a specific problem on GitHub.
A repository graph that shows a repository’s traffic, including full clones (not fetches), visitors from the past 14 days, referring sites, and popular content.
To transfer a repository means to change the owner of a repository. The new owner will be able to immediately administer the repository’s contents, issues, pull requests, releases, and settings.
When talking about a branch or a fork, the primary branch on the original repository is often referred to as the “upstream”, since that is the main place that other changes will come in from. The branch/fork you are working on is then called the “downstream”. Also called origin.
The default branch that is merged into the branch in question (or the branch in question is rebased onto). It is configured via branch.<name>.remote
and branch.<name>.merge
. If the upstream branch of A is origin/B sometimes we say “A is tracking origin/B”.
Users are people with personal GitHub accounts. Each user has a personal profile, and can own multiple repositories, public or private. They can create or be invited to join organizations or collaborate on another user’s repository.
A user’s handle on GitHub.
An API request used by an application that performs a task on behalf of a particular user. Where a task is carried out with user-to-server authentication it’s shown on GitHub as having been done by a user via an application. For example, you might choose to create an issue from within a third-party application, and the application would do this on your behalf on GitHub. The scope of tasks an application can perform using a user-to-server request is restricted by both the app’s and the user’s permissions and access. The token used in a user-to-server request is acquired via OAuth. For more information, see “Identifying and authorizing users for GitHub Apps.” See also, “server-to-server request.”
A team that can be viewed and @mentioned by every organization member.
You can watch a repository or issue to receive notifications when updates are made to an issue or pull request.
A notification about activity in a repository a user has subscribed to.
Notifications displayed in the web interface on GitHub: https://github.com/notifications
Webhooks allow you to build or set up GitHub Apps which subscribe to certain events on GitHub.com. Webhooks provide a way for notifications to be delivered to an external web server whenever certain actions occur on a repository or organization. Also called a service hook.
A permission level on a repository that allows the user to push, or write, changes to the repository.