환경 : Ubuntu 18.04.3
Terminator를 사용하여 GitHub에 코드 올리기
※ Git 설치
1. Github에 올릴 코드가 있는 곳으로 이동
$ cd 폴더명
2. Git 저장소 생성(git init)
$ git init
3. 파일 상태 확인 (git status)
$ git status
4. 파일 add 하기 (git add)
- untracked 파일을 tracked 파일로 만들어줍니다.
$ git add 파일명 or 폴더명
5. commit하기 (git commit)
$ git commit -m 원하는내용
6. Github에 업로드 (git remote)
$ git remote add origin 올릴github주소
$ git remote -v
7. push하여 commit내용 올리기 (git push)
$ git push origin master
8. 신나게 확인 해보기
- 잘 올라갔는지 확인 해보면 끝~
'Terminal > github' 카테고리의 다른 글
GIT에러 Changes not staged for commit... (0) | 2020.05.21 |
---|