<aside> <img src="/icons/magic-wand_gray.svg" alt="/icons/magic-wand_gray.svg" width="40px" /> First thing you go to git :

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

</aside>

  1. You are in your Mac's finder
  2. Type cd <folder-name> example - cd repos - cd navigates to that folder
  3. Type ls example - ls - shows the current folders' contents
  4. To make a new folder in the current folder - mkdir <folder-name> example - mkdir website - creates a new folder in the current directory. (directory = current folder)
  5. To create a new file touch <file-name> example - touch style.css

git init - Initialise a new repo

To stage - git add -A (to select all changes made in the repo) To stage only some changes - add file names with space in between each file name

To commit - git commit -m "msg"

To push the staged commits - git

https://getcssscan.com/css-box-shadow-examples

.under::before {
  content: "";
  width: 100%;
  height: 20px;
  background: #ffdc00;
  position: absolute;
  left: 0;
  bottom: 2px;
  z-index: -1;
  border-radius: 2px;
  transform: rotate(-1deg);
  transition: all 0.2s;
}
transform: perspective(1px) translateZ(0);
  box-shadow: 10px 10px 1px rgba(52, 52, 52, 15%);
  transition-duration: 0.5s;
  transition-property: box-shadow, transform;
-webkit-tap-highlight-color: rgba(52, 52, 52, 15%);
  -webkit-font-smoothing: antialiased;

Here's the completed version of your notes on learning terminal commands:

  1. You are in your Mac's finder
  2. Type cd <folder-name> example - cd repos - cd navigates to that folder
  3. Type ls example - ls - shows the current folders' contents
  4. To make a new folder in the current folder - mkdir <folder-name> example - mkdir website - creates a new folder in the current directory. (directory = current folder)
  5. To create a new file touch <file-name> example - touch style.css

git init - Initialise a new repo

To stage - git add -A (to select all changes made in the repo) To stage only some changes, add file names with space in between each file name, for example - git add index.html style.css