터미널(cmder)을 이용한 Git 설치유무 확인하기

2021. 6. 26. 04:45Big Dreamer_Developer/Git

git을 설치하기 전에, 우선 나의 컴퓨터에 git이 이미 설치외어 있는지 확인해 보려면,

git --version

을 입력해본다. 

 

입력했을 시 

git version 2.32.0.windows.1

와 같은 형식으로 나온다면, git은 이미 당신의 컴퓨터에 설치되어 있다.

만약 git이 설치되어 있지 않다면,

https://git-scm.com/downloads

 

Git - Downloads

Downloads macOS Windows Linux/Unix Older releases are available and the Git source repository is on GitHub. GUI Clients Git comes with built-in GUI tools (git-gui, gitk), but there are several third-party tools for users looking for a platform-specific exp

git-scm.com

에서 운영체제에 맞게 다운로드 할 수 있다.

 

UI 어플리케이션은 소스트리 웹사이트 

https://www.sourcetreeapp.com/

 

Sourcetree | Free Git GUI for Mac and Windows

A Git GUI that offers a visual representation of your repositories. Sourcetree is a free Git client for Windows and Mac.

www.sourcetreeapp.com

에서 운영체제에 맞는 것을 다운로드 받을 수 있다.

 

이렇게 터미널과 소스트리를 준비했다면, 

git을 위한 셋업을 위한 준비는 끝이다.