GitNotes.45-5.md
본 문서는 Git Notes for Professionals (라이센스:CC-BY-SA) 를 한글로 번역한 문서입니다. 번역상 오류가 있을 수 있으므로 정확한 내용은 원본 문서를 참고하세요.

Section 45.5: 원격 저장소에 대한 더 많은 정보를 표시하기

git remote show <remote repository alias> 명령어를 사용하면 원격 저장소에 대한 추가적인 정보들을 확인할 수 있다.

git remote show origin

실행 결과:

remote origin Fetch URL: https://localserver/develop/myrepo.git Push URL: https://localserver/develop/myrepo.git HEAD branch: master Remote branches: master tracked Local branches configured for 'git pull': master merges with remote master Local refs configured for 'git push': master pushes to master (up to date)

[출처] https://books.goalkicker.com/GitBook/ (CC BY-SA)

반응형

+ Recent posts