<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>
cd <folder-name>
example - cd repos
- cd navigates to that folderls
example - ls
- shows the current folders' contentsmkdir <folder-name>
example - mkdir website
- creates a new folder in the current directory. (directory = current folder)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;
cd <folder-name>
example - cd repos
- cd navigates to that folderls
example - ls
- shows the current folders' contentsmkdir <folder-name>
example - mkdir website
- creates a new folder in the current directory. (directory = current folder)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