Skip to content

5. Git 협업하기


1. Remote Repository의 Commit을 가져오기만 하기

git fetch
git diff LocalBranch RemoteBranch


  • Remote Repository에서 가져온 Branch의 내용을 Merge하기 전에 점검해야 할 필요가 있을 때 사용한다.
  • Remote Repository에 있는 Branch의 내용과 내가 작성한 코드를 비교해서 잘못된 부분이 없는지 검토해야 할 때 사용한다.


2. 코드 작성자 확인하기

git blame ExampleFile


3. 이미 Push된 Commit 바로 전으로 되돌리기

git revert NewGitHash
git push


4. 이미 Push된 Commit 특정 Commit으로 되돌리기

git revert StartGitHash..EndGitHash
git push


  • 이때 StartGitHash는 포함되지 않는다.