'JS' 카테고리의 다른 글

git github 명령어  (0) 2023.12.12
Next.js 14  (0) 2023.12.11

https://git-scm.com/

 

Git

 

git-scm.com

https://github.com/

 

GitHub: Let’s build from here

GitHub is where over 100 million developers shape the future of software, together. Contribute to the open source community, manage your Git repositories, review code like a pro, track bugs and fea...

github.com

 

 

git init

.git 하위 디렉토리 생성

 

git add README.md

프로젝트 소개글 생

git status

작업 디렉토리와 스테이징 영역 상태 확인

git add .

현재 디렉토리의 모든 변경 내용을 스테이징 영역

$ git add <파일/디렉토리 경로>

$ git add -A

$ git add -p

 

git branch -M main

https://git-scm.com/book/en/v2/Git-Branching-Branch-Management

 

 

git remote -v

# origin  https://github.com/user/repo.git (fetch)
# origin  https://github.com/user/repo.git (push)

원격 저장소 연결 확인

 

git remote set-url origin https://github.com/user/변경할repo.git

git remote set-url origin {변경할 원격 저장소 주소}

 

git push -u origin main

origin 주소에 branch(main) 업로

-u 옵션 초기값 저장

 

 

.gitignore 파일 무시

https://docs.github.com/ko/get-started/getting-started-with-git/ignoring-files

 

Ignoring files(파일 무시) - GitHub Docs

GitHub에 체크 인하지 않으려는 파일을 무시하도록 Git을 구성할 수 있습니다.

docs.github.com

 

 

 

 

 

출처

https://www.daleseo.com/git-add/

https://git-scm.com

'JS' 카테고리의 다른 글

리액트 풀코스 무료(2024) / React Full Course for free ⚛️ (2024)  (0) 2024.02.01
Next.js 14  (0) 2023.12.11

 

export default function Home() {
  return (
  <>
  </>
  )

https://nextjs.org/docs/getting-started/installation

 

Getting Started: Installation | Next.js

Create a new Next.js application with `create-next-app`. Set up TypeScript, styles, and configure your `next.config.js` file.

nextjs.org

https://www.youtube.com/watch?v=smAU6-ZdcoQ&list=RDCMUCvc8kv-i5fvFTJBFAk6n1SA&index=12

 

npx create-next-app@latest

 

What is your project named? my-app
Would you like to use TypeScript? No / Yes
Would you like to use ESLint? No / Yes
Would you like to use Tailwind CSS? No / Yes
Would you like to use `src/` directory? No / Yes
Would you like to use App Router? (recommended) No / Yes
Would you like to customize the default import alias (@/*)? No / Yes
What import alias would you like configured? @/*

 

npm run dev

 

https://www.youtube.com/watch?v=GFF3zgFS7Ug

export default function Home() {
  return (
  <>
    <h1>page</h1>
  </>
  )

html

<script type="module" src="index.js"></script>

 

Home.js

export function Home(){}

import {Home} form './Home.js'

export default function Home(){}

import Home from './Home.js'

 

https://lottiefiles.com/kr/

 

무료 로티 애니메이션, 모션 그래픽을 위한 모든 플러그인과 도구를 한 곳에 - 로티파일즈/LottieFi

로티파일즈/LottieFiles는 오픈소스 애니메이션 포맷 로티를 제공하는 세상에서 가장 큰 무료 플랫폼입니다. 웹, iOS, 안드로이드, 윈도우를 위한 모션 그래픽 작업을 지원하는 플러그인과 툴을 통

lottiefiles.com

https://www.npmjs.com/package/react-lottie-player

 

react-lottie-player

Fully declarative React Lottie player. Latest version: 1.5.5, last published: 4 months ago. Start using react-lottie-player in your project by running `npm i react-lottie-player`. There are 63 other projects in the npm registry using react-lottie-player.

www.npmjs.com

https://vercel.com/

 

Vercel: Build and deploy the best Web experiences with The Frontend Cloud

Vercel's Frontend Cloud gives developers the frameworks, workflows, and infrastructure to build a faster, more personalized Web.

vercel.com

 

'JS' 카테고리의 다른 글

리액트 풀코스 무료(2024) / React Full Course for free ⚛️ (2024)  (0) 2024.02.01
git github 명령어  (0) 2023.12.12

+ Recent posts