사용자 도구

사이트 도구


git

차이

문서의 선택한 두 판 사이의 차이를 보여줍니다.

차이 보기로 링크

양쪽 이전 판 이전 판
다음 판
이전 판
다음 판 양쪽 다음 판
git [2020/07/25 13:31]
kwon37xi [Client 설정]
git [2020/08/04 22:27]
kwon37xi [libsecret 기반 credential]
줄 2: 줄 2:
   * http://git-scm.com/   * http://git-scm.com/
   * [[git:cheatsheet|Git Cheatsheet]]   * [[git:cheatsheet|Git Cheatsheet]]
 +
 +===== Ubuntu 최신 버전 install =====
 +  * [[https://itsfoss.com/install-git-ubuntu/|How to Install the Latest Git Version on Ubuntu]]
 +  * [[https://launchpad.net/~git-core/+archive/ubuntu/ppa|git-core/ppa]]
 +<code sh>
 +sudo add-apt-repository ppa:git-core/ppa
 +sudo apt update
 +sudo apt install git
 +</code>
  
 ===== Client 설정 ===== ===== Client 설정 =====
줄 57: 줄 66:
 </code> </code>
  
-===== Password with Gnome-Keyring  ===== +===== libsecret 기반 gnome-keyring credential ===== 
-  * [[http://blog.iqandreas.com/git/storing-https-authentication-in-ubuntu-and-arch-linux/|GIT: Storing HTTPS Authentication in Ubuntu (and Arch Linux) The Programming Blog of Andreas Renberg (IQAndreas)]]<code sh> +  * [[https://www.softwaredeveloper.blog/git-credential-storage-libsecret|Libsecret - remember Git credentials in Linux Mint and Ubuntu securely]] 
--- 오래된것임. 최신화 필요. +  * [[https://stackoverflow.com/a/40312117/1051402|libsecret 기반 git credential]] 
-# on Ubuntu +  * ''gnome-keyring'' 등에 직접 의존하지 않고 중간 단계인 ''libsecret'' 을 거쳐 ''gnome-keyring''을 사용한다. 
-sudo apt-get install libgnome-keyring-dev +  * [[https://wiki.gnome.org/Projects/Libsecret|Projects/Libsecret GNOME Wiki!]] 
-sudo make --directory=/usr/share/doc/git/contrib/credential/gnome-keyring +<code sh> 
-git config --global credential.helper /usr/share/doc/git/contrib/credential/gnome-keyring/git-credential-gnome-keyring+sudo apt-get install libsecret-1-0 libsecret-1-dev 
 +cd /usr/share/doc/git/contrib/credential/libsecret 
 +sudo make 
 +git config --global credential.helper /usr/share/doc/git/contrib/credential/libsecret/git-credential-libsecret
 </code> </code>
 +
 +===== Password with Gnome-Keyring  =====
 +  * deprecated.
 +  * 사용하지 말 것. ''libsecret'' 기반으로 ''gnome-keyring''과 연동한다.
 +  * [[http://blog.iqandreas.com/git/storing-https-authentication-in-ubuntu-and-arch-linux/|GIT: Storing HTTPS Authentication in Ubuntu (and Arch Linux) - The Programming Blog of Andreas Renberg (IQAndreas)]]
  
 ===== Password with kde  ===== ===== Password with kde  =====
git.txt · 마지막으로 수정됨: 2023/10/14 13:47 저자 kwon37xi