Skip to content

Instantly share code, notes, and snippets.

@parkjoohwan
Created February 3, 2020 08:02
Show Gist options
  • Select an option

  • Save parkjoohwan/013cc5008c5fd003e6ef8cc0613e137e to your computer and use it in GitHub Desktop.

Select an option

Save parkjoohwan/013cc5008c5fd003e6ef8cc0613e137e to your computer and use it in GitHub Desktop.
git에 프로젝트 콘솔로 간단하게 등록하는 방법
  1. 내 컴퓨터에 git 환경설정을 한다.
  1. git에서 레포지토리를 만든다!, [레포지토리 url]을 복사한다

  2. cmd를 키고 올릴 프로젝트가 있는 폴더 위치로 이동한다

  3. 다음의 명령어를 입력한다

git init
git remote add origin [레포지토리 url]
git add .
git commit -m "project copy"
git push origin master
  1. 완료 될때까지 기다린다.

특정 레포지토리를 콘솔로 내려받는 방법은

git clone [레포지토리url]

입니다.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment