본문 바로가기

개발/Git8

[Git] 파일 이동 되돌리기 - git reset, git checkout 목표 git restore, git checkout으로 프로젝트를 커밋 시점으로 되돌리기 파일 이동으로 수정된 프로젝트를 커밋 시점으로 되돌리기 커밋된 상태인 깃 프로젝트에서 특정 파일을 옮겼을 때(modified), 프로젝트의 상태를 커밋 시점(modified 전)으로 되돌리는 방법을 알아보겠습니다. git restore, git checkout으로 프로젝트를 커밋 시점으로 되돌리기 먼저 우리는 깃 프로젝트에서 git add와 git commit을 통해 커밋을 합니다. 그림에서 보듯이 add를 하면 working directory에 있는 파일을 staging area에 보냅니다. commit을 하면 staging area에 있는 모든 파일들을 repository에 올리게 되죠. 커밋 이후 파일을 수정했.. 2021. 1. 4.
git README.MD 마크다운 사용법 https://gist.github.com/ihoneymon/652be052a0727ad59601 마크다운 사용법 마크다운 사용법. GitHub Gist: instantly share code, notes, and snippets. gist.github.com 2020. 4. 19.
git Repository 생성과 연결 프로젝트를 하면서 소스코드 공유와 관리를 위해 git을 사용하는데 이 git 사용 방법을 알아봅시다 먼저 github 계정이 필요합니다 없으시다면 만들어주세요 https://github.com/ Build software better, together GitHub is where people build software. More than 40 million people use GitHub to discover, fork, and contribute to over 100 million projects. github.com 1단계 - git hub Repository 만들기 로그인하면 다음과 같이 나오는데 Repositories에 들어가 New를 눌러 새 Repository를 만듭시다 특별한 설정 없이 Re.. 2020. 4. 7.
git 사용 명령어 정리 1. git 저장소 가져오기 git clone "~" 2. git 변경내용 확인하기 git fetch 3. 변경 내용 가져오기 git pull origin master 4. 작업 내용 확인하기 git status 5. 작업 내용 추가하기 git add * / git add 파일명 6. 작업 내용 정리 하기 git commit -m "작업 내용" 7. 작업 내용 올리기 git push origin master git init (깃 프로젝트로 변경) git add * (프로젝트 내부 파일들을 모두 깃 관리에 추가) git status (현재 관리 목록 확인) git add .gitignore (*로 추가 안된 파일 추가) git add .meteor (*로 추가 안된 파일 추가) git commit (현재 .. 2020. 1. 19.