User Tools

Site Tools


qnote:git

Быстрые заметки по git

Поменять url репозитория

Посмотреть конфиг репозитория

# git config -l
user.name=xxx
user.email=xxx
core.repositoryformatversion=0
core.filemode=true
core.bare=false
core.logallrefupdates=true
remote.origin.url=https://github.com/xxx/xxx.git
remote.origin.fetch=+refs/heads/*:refs/remotes/origin/*
branch.master.remote=origin
branch.master.merge=refs/heads/master

Задать другой ssh ключ

# cat ~/.ssh/config
...

Host github.com
    HostName github.com
    User git	
    IdentityFile ~/.ssh/github_key

...
qnote/git.txt · Last modified: 2021/08/21 10:55 by k

Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki