diff --git a/frontend/src/views/Home.vue b/frontend/src/views/Home.vue index ca0ba0ec..16cd3818 100644 --- a/frontend/src/views/Home.vue +++ b/frontend/src/views/Home.vue @@ -6,7 +6,7 @@
- + Milligram diff --git a/instructions/day1/ApplicationPart1/README.md b/instructions/day1/ApplicationPart1/README.md index 12e46abd..48eaee21 100644 --- a/instructions/day1/ApplicationPart1/README.md +++ b/instructions/day1/ApplicationPart1/README.md @@ -15,7 +15,7 @@ Today you will learn how to: ## Table Of Contents 1. [Create a new branch in your project](#create-a-new-branch-in-your-project) -2. [Change the title and it's color of your App](#change-the-title-and-its-color-of-your-app) +2. [Change the title and its color of your App](#change-the-title-and-its-color-of-your-app) 3. [Test your changes in your codespace](#test-your-changes-in-your-codespace) 4. [Commit & push your changes](#commit--push-your-changes) 5. [Open a pull request and merge it](#open-a-pull-request-and-merge-it) @@ -26,6 +26,16 @@ Go to your repository on GitHub. Click on the "main" dropdown and type in the na ![Create a new branch](./images/create-branch.png) +Let's type a few git commands in the terminal to create a new branch. +![Terminal](./images/terminal.png) + +
+What is a terminal? + +You are probably used to getting things done on your computer by moving your mouse around and clicking on things. There is actually a different way with which you can use your computer: The terminal!\ Instead of moving your mouse you can type a command in the terminal and the computer will execute it. Say, you want to go to a specific folder on your computer - we have a command for that, namely, `cd ` (cd stands for change directory). There are many other commands that can do many different things. We call the set of all commands and their combinations the Shell Scripting language. You can try them out for yourself, go to the terminal (the little box as shown in the picture) and type `help` - this will list all the built-in commands. Feel free to play around and give them a try to familiarize yourself with the environment. For some handy common commands you can try: `pwd` (outputs the path of your current directory, pwd stands for print working directory) and `ls` (lists all the files in the current repository) + +
+ Go back into your codespace and type into the terminal: git pull @@ -40,7 +50,7 @@ It should look similar to this: Congrats! You just created a new branch and switched to it successfully. Now you can start making changes to your code! -## Change the title and it's color of your App +## Change the title and its color of your App Open the file `Home.vue` from the folder `frontend/src/views`. On top you find a so called `