Update Code

Before proceeding with the steps below, ensure that you have installed Visual Studio Code on your computer.
If not, you can download them here: Download Visual Studio Code

Excecution Sequence

  1. In the Git bash interface
  • Execute the command git pull to update all the latest changes from your Github Repository workshop2 to your local machine
git pull

UPDATE

  • Execute the command code . to open the current directory with Visual Studio Code
code .

UPDATE

  1. In the Visual Studio Code interface that has just opened
  • In the content folder, select _index.md, we make changes
# Work with Amazon System Manager - Session Manager
  • To
# Work with Amazon System Manager - Session Manager - CI/CD

UPDATE

  1. Save the changes. And exit Visual Studio Code

  2. Return to the Git bash interface and proceed to push code on our Github Repository.
    By executing the following commands

git add .
git commit -m "Edit Source Code"
git push

UPDATE