Git 엔드포인트 확인

Jmnote bot (토론 | 기여)님의 2017년 6월 27일 (화) 03:33 판 (봇: 자동으로 텍스트 교체 (-== 참고 자료 == +==참고==))
(차이) ← 이전 판 | 최신판 (차이) | 다음 판 → (차이)
how to find out git endpoint
Git 엔드포인트 확인

1 방법 1: git ★

$ git remote -v
origin	https://github.com/jmnote/SimpleMathJax.git (fetch)
origin	https://github.com/jmnote/SimpleMathJax.git (push)

2 방법 2: .git/config

$ cat .git/config 
[core]
	repositoryformatversion = 0
	filemode = true
	bare = false
	logallrefupdates = true
[remote "origin"]
	url = https://github.com/jmnote/SimpleMathJax.git
	fetch = +refs/heads/*:refs/remotes/origin/*
[branch "master"]
	remote = origin
	merge = refs/heads/master

3 같이 보기

4 참고

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}