Git_Tutorial_Documentation_git pull commit내가 원하는 과거 버젼으로 받기_단서1
https://backlog.com/git-tutorial/kr/reference/log.html
누구나 쉽게 이해할 수 있는 Git 입문~버전 관리를 완벽하게 이용해보자~ | Backlog
누구나 쉽게 알 수 있는 Git에 입문하신 것을 환영합니다. Git을 사용해 버전 관리를 할 수 있도록 함께 공부해봅시다!
backlog.com
https://git-scm.com/docs/gittutorial
Git - gittutorial Documentation
Many revision control systems provide an add command that tells the system to start tracking changes to a new file. Git’s add command does something simpler and more powerful: git add is used both for new and newly modified files, and in both cases it ta
git-scm.com
Git - Reference
Reference
git-scm.com
git clone https://github.com/xxxx/xxxxxed.git(http://내가 원하는 git)
// 이거 다음에 ..
git checkout 07a9b0c (내가 땡기고 싶은 git commit 3dsdf3 이런거 적으면 될듯)
https://velog.io/@janeljs/git-2
Git에서 커밋 시점 이동하는 법(git checkout)
현재 상태를 확인한다.git log를 통해 커밋 히스토리를 확인한다.이동을 원하는 시점의 커밋 아이디(최소 앞 7자리)를 복사한 뒤 checkout 명령어를 실행하면 해당 시점의 커밋으로 돌아간다.다시 최
velog.io
https://stackoverflow.com/questions/31462683/git-pull-till-a-particular-commit
Git pull till a particular commit
I want to do a git pull but only till a specific commit. A->B->C->D->E->F (Remote master HEAD) so suppose my local master HEAD points to B, and I want to pull till E. What should ...
stackoverflow.com