Git 엔드포인트 확인

Jmnote (토론 | 기여)님의 2017년 5월 13일 (토) 15:32 판
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 }}