Git이란 Code의 version 을 관리해 주는 프로그램이다.
Github란 이런 Git을 간편하게 사용하고 관련된 파일을 관리해주는 Platform이다.
1. 파일 이동 구조
Git된 파일이 이동하는 구조와 명령어는 다음과 같다.
(1) Working Directory (파일 폴더 ) + "git add " -> (2) Staging Area + "git commit " -> (3) Local Repository + "git push" -> (4) Remote Repository (Github에 업로드됨)
2. Git 사용 명령어
Git 을 실행할 해당 파일 경로에서 Terminal 창에 아래 명령어를 사용한다.
At working directory : git init
At staging area : git add (ex. git add "특정 파일 이름" or . (all) )
At local repository : git commit (ex. git commit -m "first issue")
At remote repository : git push
-> 첫 번째로 New Repository에 Push 하는 경우
git commit -m "first commit"
git branch -M main
git remote add origin https://github.com/worldneedforme/simpleBlog.git
git push -u origin main
-> Existing repository 에 Push 하는 경우
git remote add origin https://github.com/worldneedforme/simpleBlog.git
git branch -M main
git push -u origin main
'Programming 기초' 카테고리의 다른 글
Python, __name__변수와 Decorate Function 사용하기 (0) | 2023.11.14 |
---|---|
환경 변수 PATH 란 무엇인가. (0) | 2023.11.12 |
댓글