Типичный фаил hosts любого линейджера в 2000-е
127.0.0.1 localhost
127.0.0.1 l2authd.lineage2.com
127.0.0.1... Читать далее·1 мин. чтения
Существует несколько способов получить ссылку на GIT репозиторий из папки в которую был ранее склонирован репозиторий. Давайте рассмотрим каждый из них:
git config --get remote.origin.url
https://github.com/geekrainian/next-app.git
git remote -v
origin https://github.com/geekrainian/next-app.git (fetch)
origin https://github.com/geekrainian/next-app.git (push)
git remote show origin
* remote origin
Fetch URL: https://github.com/geekrainian/next-app.git
Push URL: https://github.com/geekrainian/next-app.git
HEAD branch: master
.git/config
вручную или используем команду cat .git/config
[core]
repositoryformatversion = 0
filemode = false
bare = false
logallrefupdates = true
symlinks = false
ignorecase = true
[remote "origin"]
url = https://github.com/geekrainian/next-app.git
fetch = +refs/heads/*:refs/remotes/origin/*
[branch "master"]
remote = origin
merge = refs/heads/master
Похожие публикации