2.1.1 Access the Spring Boot Application
This tutorial demostrates how to get a local copy of the Spring Boot Application for this project that is stored in a GitHub Repository.
Pre-Requisites
Registrations
Installations
- git CLI (Mac/Linux/Windows)
- Visual Studio Code
Note: Run the following commands in Terminal/Command line to verify Installations
git -v
Access the Spring Boot Application
- Open your IDE (IntelliJ or VS Code)
- Open the folder containing your local repository
- Open the terminal in your IDE
- Run the following commands
- Make sure you are in the main or master branch (Note: There will be a * next to the branch you are in)
git branch
- If not, run the following command (master or main)
git checkout master
- Get a local copy of the code
git pull https://github.com/blackcodecamp/CloudWebDevelopment.git --rebase
-
See the code files
Mac Windows ls
dir
- Update your remote repository
git push -f
- Make sure you are in the main or master branch (Note: There will be a * next to the branch you are in)