jineecode
vscode를 githube와 연결시키기 본문
1. ctrl + ` = 터미널 열어주기
2. git init 입력하기 (git 폴더를 만들어줌_ 숨김파일)
3.
git config --global user.name "내 이름"
git config --global user.email "내 메일주소"
4. git status 로 상태 확인하기
5. git add 명령어들
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' 카테고리의 다른 글
이슈 생성하고 닫기 (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