- how to find out git endpoint
- Git 엔드포인트 확인
1 방법 1: git ★[ | ]
Console
Copy
$ git remote -v
origin https://github.com/jmnote/SimpleMathJax.git (fetch)
origin https://github.com/jmnote/SimpleMathJax.git (push)
2 방법 2: .git/config[ | ]
Console
Copy
$ 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 참고[ | ]
편집자 Jmnote Jmnote bot
로그인하시면 댓글을 쓸 수 있습니다.