Complete the code to initialize a Git repository for your PCB project.
git [1]Use git init to create a new Git repository in your PCB project folder.
Complete the command to add all PCB project files to the staging area.
git [1] .Use git add . to stage all files in the current directory for the next commit.
Fix the error in the commit command to save changes with a message.
git commit [1] "Initial PCB design files"
The -m flag allows you to add a commit message inline.
Fill both blanks to push your local commits to the remote repository named 'origin' on the 'main' branch.
git [1] [2] main
Use git push origin main to send your commits to the remote repository's main branch.
Fill all three blanks to create a new branch named 'feature-update' and switch to it.
git [1] [2] [3]
The command git checkout -b feature-update creates and switches to a new branch called 'feature-update'.
