jineecode

vscode를 githube와 연결시키기 본문

git

vscode를 githube와 연결시키기

지니코딩 2021. 1. 23. 20:44

1. ctrl + ` = 터미널 열어주기

2. git init 입력하기 (git 폴더를 만들어줌_ 숨김파일)

 

3. 

git config --global user.name "내 이름"
git config --global user.email "내 메일주소"

 

4. git status 로 상태 확인하기

 

5. git add 명령어들

ifuwanna.tistory.com/193

 

Git 저장소 생성 및 커밋 ( init / add / commit )

 개요 깃 (Git) 의 장점중 하나는 대부분의 명령을 로컬에서 실행한다는 점입니다. 원격 저장소(remote Repository) 의 정보가 필요한때만 (pull push 등) 네트워크가 필요하고 그 외에는 오프라인 환경

ifuwanna.tistory.com

6. git commit -m [설명] 

 

 

7. githube에서 새 레퍼지토리 만들기

 

8. …or push an existing repository from the command line 

안에 있는 주소를 터미널로 넣어주기

git remote add origin https://github.com/uhj/js_chromeApp.git

origin이라는 이름의 원격 저장소로 설정하겠다.

origin은 디폴트 이름이다.

 

9.  git push!

 

 

 

참조.

rogerdudler.github.io/git-guide/index.ko.html

 

git - 간편 안내서 - 어렵지 않아요!

 

rogerdudler.github.io

 

'git' 카테고리의 다른 글

이슈 생성하고 닫기  (0) 2021.03.22
git revert 취소하기  (2) 2021.02.18
git을 다른 곳에서 함께 관리하기.  (0) 2021.02.13
Updates were rejected 오류.  (0) 2021.02.09
개인 작업 github에 push하기.  (0) 2020.12.09
Comments