Skip to content

Latest commit

 

History

History
21 lines (16 loc) · 888 Bytes

README.md

File metadata and controls

21 lines (16 loc) · 888 Bytes

Bazel Codelab

Before you get started

Take a look at these informational slides to learn about Bazel.

Codelab instructions

  1. Click on Code -> Create codespace on main to launch a new codespace.
  2. Wait for the codespace to finish setting up. This should be quick in regions with prebuilt codespaces.
  3. Once you get a shell prompt in your codespace, run ./next_exercise.sh to move to exercise-000-intro.
./next_exercise.sh

Note

./next_exercise.sh is destructive:

  • it removes any untracked files you created (via git clean)
  • it reverts any changes to tracked files (via git reset --hard)
  • ...before checking out the branch for the next exercise.

If you would like to save any work, clone locally and commit before running any scripts.