13. Submitting Your Changes for Review

Repeat Codespaces Local

13.1. Workflows

The following diagram shows the workflow for submitting changes to the FTC Docs repository. For first time users of Git/GitHub, do not worry if this seems confusing. First focus on understanding the steps and then the workflow will make more sense.

Local changes start in your local copy of the project. They move from the working directory to local Git staging and are then committed to the local repository. From there they are pushed to your personal FTC Docs repository.

Codespaces are part of your personal FTC Docs GitHub project. In a similar manner to local changes, Codespace changes are staged and committed to your personal FTC Docs repository. Once any changes are in your personal FTC Docs repository they can be submitted as a Pull Request to the FTC Docs repository.

In the FTC Docs repository changes arrive as Pull Requests that are reviewed and approved. They are then merged with the Main branch and the changes are published.

In a web browser this diagram can be zoomed and panned by using a mouse. Use the scroll wheel to zoom in and out. Right click and hold then drag to pan. The diagram is not keyboard accessible. A screen reader will read the various nodes and actions in the diagram and starts in the Local section of the diagram.

flowchart TD working[Working Directory] staging[Staging Area] localrep[Local Repository] user[Contributor] subgraph FTCDocs_GitHub direction RL main[Main Branch] ex-branch[Example Branch] ex-branch<-->|Pull Request|main end subgraph Personal_FTCDocs_GitHub main2[Main Branch] dm-branch[Example Branch 2] ex-branch2[Example Branch] ex-branch2<-->|Pull Request|main2 dm-branch<-->|Pull Request|main2 end subgraph Local direction RL working-->|git add|staging staging-->|git commit|localrep localrep-->|git checkout|working localrep-->|git merge|working user-->|Changes|working end Personal_FTCDocs_GitHub-->|git pull|localrep localrep-->|git push|Personal_FTCDocs_GitHub ex-branch2<-->|Pull Request|main main2<-->|Pull Request|main FTCDocs_GitHub-->|Fork|Personal_FTCDocs_GitHub

13.2. Overview

Before getting started, it is important to understand what Git tries to accomplish. As Git is an incredibly powerful(and complex) tool, this can be difficult and overwhelming. This tutorial will attempt to simplify this by focusing on the most common use cases.

13.2.1. What is Git?

graph LR working[Working Directory] staging[Staging Area] localrep[Local Repository] user[Contributor] working-->|git add|staging staging-->|git commit|localrep user-->|Changes|working

Simplified Local Git Repository Workflow

Git is a version control system (VCS) that allows you to track changes to your files within a repository. A repository is a collection of files that are being tracked by Git. You can think of a repository as a folder that contains all of the files that you are working on.

However, Git does not track every change you make to a file. This is because it would be inefficient to track every change and often distracting. Instead Git tracks changes in snapshots called commits. Each commit is a snapshot of the changes made to the files in the repository. A commit does not contain the entire file but only the changes made to the file. This allows Git to be efficient and fast. You can then think of each commit as a “Git save”.

Before you can commit your changes, we must indicate which files we want to be updated in the commit. This is done by a process known as staging. Why don’t we just commit all of the changes? Sometimes you may have changes that you do not want to commit. For example, maybe you deleted a file that you did not mean to delete. In addition, you may not want to commit build files or other temporary files that are not necessary for the repository. Note that we have configured Git to ignore build files so you do not have to worry about them.

After you have staged and committed your changes, you can push them to the remote repository. This is the repository that you see on GitHub. This allows others to see your changes and collaborate with you. You have full control over what changes you want to push to the your fork of the main repository. In order for your changes to be reflected in the main FTC Docs website you will need to add your changes to the main repository. This is done by creating a pull request.

13.3. Steps

Note

All of the following commands are typed and executed in the terminal. This can be found on the bottom of the screen in VS Code.

13.3.1. Staging Your Changes

As a reminder, staging is the process of indicating which files you want to be included in the next commit (“Git Save”). This is done by using the Local command git add <file>. You can add multiple files by separating them with a space.

In Codespaces click on the source control icon which will display the source control panel.

Source control icon

Click on the + symbol next to each changed or new file in the source control panel to stage that file.

Screenshot showing the source control panel with a file to be staged.

13.3.2. Committing Your Changes

Once you have staged your changes, you can commit them. This is done by using the Local command git commit -m "Your commit message". You can think of a commit as a snapshot of your changes. Each repository is a collection of commits each describing incremental changes relative to the previous commit.

In Codespaces enter a commit message in the source control panel and click the Commit button.

Screenshot showing the source control panel with a message to be committed.

13.3.3. Pushing Your Changes

Once you have committed your changes, you can push them to your fork of the repository. This is done by using the Local command git push origin <branch>. This will push your local changes to the remote repository. This means it will be accessible to others. After this change is pushed, you can create a pull request.

In Codespaces click the Sync Changes button.

Screenshot showing the source control panel with the Sync Changes icon.

13.3.4. Creating a Pull Request

Now that you have pushed your changes to your fork of the repository the next step is propose these changes to the main repository. Why don’t we just push our changes to the main repository? This is because the pull request allows the maintainers of the main repository to review your changes before they are merged. This is important as it allows comments and feedback to be given on your changes. For details on how to create a pull request, see the next section.

13.4. Example

The following is a Local example of all the Git commands. The pull request commands are done in GitHub starting at step 7.

If you are using Codespaces just skip to step 7.

  1. Navigate to the directory of the repository on your local machine.

cd docs/source
  1. Ensure that you are on the correct branch. In this case we are on the branch “demo”. If you are not on the correct branch, follow the previous step.

git branch
  1. Stage your changes. In this case we need to stage the new file, the images we use in it, as well as the changes to the table of contents.

git add demo_section/demo-section.rst
git add demo_section/images/demo.png
git add index.rst
  1. For the first time you commit changes, you will need to set your name and email.

git config --global user.email "<INSERT YOUR EMAIL HERE>"
git config --global user.name "<INSERT YOUR NAME HERE>"
  1. Commit your changes. In this case we are adding a new section called “Demo” so we will use the commit message “Add demo section”.

git commit -m "Add demo section"
  1. Push your changes to your fork of the repository.

git push
  1. Navigate to the official FTC Docs repository on GitHub.

  2. Click Compare & Pull Request.

    Note

    This option is also available by clicking the “Pull Request” tab and then clicking the “New pull request” button. Then click compare across forks. Select `<USERNAME>/ftcdocs` for the head repository and the branch you want to merge. Select FIRST-Tech-Challenge/ftcdocs for the base repository and the branch you want to merge into. Then click Create Pull Request.

    Screenshot showing the Compare & Pull Request button highlighted.
  3. Fill out the pull request title and description. For more information on creating a pull request, see our Contribution Guide.

    Screenshot showing the pull request title and description.
  4. Scroll down to see a preview of the changes you are proposing. Make sure that everything looks correct and that no files or changes have been omitted. Also make sure no erroneous changes are included.

    Screenshot showing the changes in this pull request.
  5. If everything looks good, click the Create Pull Request button.

    Screenshot showing the Create Pull Request button highlighted.
  6. After this you will be able to see your pull request and the status of the automated checks. First time contributors will have to wait for a maintainer approval before the checks are run.

    Screenshot of the Pull Request Page showing review required and check status.
  7. After approval the checks will run. In this case the Link Checker failed. When checks fail the FTC Docs maintainers will be notified and will help you fix the issue. Generally the FTC Docs team will help you with the process of passing the checks and updating your branch.

    Screenshot of the Pull Request Page showing all checks passed except link check.

    Another problem was because our branch is no longer up to date with the main branch. This can easily be fixed by clicking the “Update branch” button.

    Update Branch

    Note

    It can take several minutes for the checks to fully run.

  8. Once the checks have passed, the FTC Docs maintainers will review your pull request. They will provide feedback and help you make any necessary changes. Once the pull request is approved, it will be merged into the main branch.

    Screenshot showing all checks passed.

    This pull request still has a Review Required and Merging is Blocked until there is an approving review.