코딩 처음 공부하면서 아무것도 몰라서 .. 코린이 알떄까지 써볼려고 한다
공부 머리는 없어서 무조건 외워야 할듯 .
GIT 핵심 구조
Working directory, staging area, repository
wsr (work schedule rule )이라고 외우면 될듯
working directory 파일 수정 (git add ) 를 누루면 staging area 에 올라감
staging area 수정 파일 을 받고 git commit 을 누루면 repository 에 올라감
repository 새로온 버전이 생성 됨
git commit
screen shot 스크린 샷이라고 생각하면됨
git push
변경 내역을 원격 저장소에 업로드 하는 동작
커밋 사항을 원격 저장소에 푸시 함
git pull
원격저장소에서 최신 코드 받아 옴
git commit -m "변경사항입력"
무엇을 바꿧는지 메시지 남김
git add .
변경사항 저장
about git &git hub
git is not github
git is a version control system
github is like icloud ,google drive , one drive , etc
Git is like a magical diary for your computer code, where you can save, track,
and go back to different versions of your work.
GitHub is like a big library where you can store your magical diaries
and share them with others.
Working directory is like your desk where you do your work,
the staging area is like a box where you put things you want to save,
and the repository is like a safe where you store all the saved boxes with your work.
git 충돌 ,git conflict (0) | 2024.07.20 |
---|---|
git push (0) | 2024.07.20 |
git clone 프로젝트 가져오기 깃 (0) | 2024.07.20 |