본문 바로가기

Tip and Tech/Ubuntu

우분투(Ubuntu)에서 터미널로 GitHub Desktop 설치하기

728x90
반응형

출처: https://github.com/desktop/desktop

 

 

이번에는 GitHub에만 대응하기 위해 설치해 사용하고 있는 'GitHub Desktop'의 설치 방법을 정리했다.

 

사실 아래 링크에서 확인할 수 있겠지만, 'GitHub Desktop'은 GitHub에서 개발/제공하는 Git Client로, 현재(2021년 6월 4일)까지는 윈도우(Windows) 또는 맥(Mac OS X)에서만 사용할 수 있다. 

 

https://github.com/desktop/desktop

 

desktop/desktop

Simple collaboration from your desktop. Contribute to desktop/desktop development by creating an account on GitHub.

github.com

 

그런데, 어느 친절(?) 능력 있는 개발자가 리눅스(Linux) 버전으로 개발, 배포하고 있는 것을 찾았다. 그래서 리눅스(Linux) 버전의 'GitHub Desktop'을 설치해 사용하게 되었고, 이 포스트를 작성할 수 있게 되었다.

 


1. GitHub Desktop 설치하기

 

다음 명령 구문으로 설치를 진행한다.

 

# 'GitHub Desktop' 리눅스(Linux) 버전 다운로드 및 설치
$ sudo apt-get update
$ sudo apt-get install snapd
$ wget https://github.com/shiftkey/desktop/releases/download/release-2.0.4-linux1/GitHubDesktop-linux-2.0.4-linux1.snap
$ sudo snap install GitHubDesktop-linux-2.0.4-linux1.snap --classic --dangerous

 

이제 Applications에서 'GitHub Desktop'을 검색해 실행한다.

 

'GitHub Desktop' 검색 후 실행

 

다음은 'GitHub Desktop' 실행 화면이다.

 

GitHub Desktop 실행 화면

 

 

참고로, 이 리눅스(Linux) 버전은 아래 GitHub 저장소에서 확인할 수 있다.

 

https://github.com/shiftkey/desktop

 

shiftkey/desktop

Fork of GitHub Desktop to support various Linux distributions - shiftkey/desktop

github.com

 


사실 GitHub에 대응하는 Git Client는 'GitHub Desktop'을 사용하고 있고, 그 외에 업무용이나 기타 다른 용도로 SmartGit을 사용하고 있다. 아래 링크는 SmartGit 설치 방법에 대한 포스트이다.

 

[Development/Ubuntu] - 우분투(Ubuntu)에서 터미널로 SmartGit 설치하기

 

우분투(Ubuntu)에서 터미널로 SmartGit 설치하기

다양한 형상관리 방법 중 Git을 이용한다면, CLI 환경에 익숙한 개발자가 아니라면, GUI를 지원하는 다양한 Git Client 중 무엇을 사용할지 고민해 봤을 것이다. 여기서는, 그중에서도 무료이면서 계

davelogs.tistory.com

 

 

728x90
반응형