본문 바로가기

Git/Git & Git Hub

Windows에서 Git 설치 후 데모 App 설치 방법 (Git clone)

728x90
반응형

# Windows에서 Git 프로그램 설치 후 데모 Application 실행방법

1. Git 설치

- URL 접속 : https://git-scm.com/download

 

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

2. 프로그램 다운 및 실행

3. Git 버전 확인 및 clone 받을 폴더 생성하기

pc@DESKTOP-AU6L1FT MINGW64 ~
$ git version
git version 2.34.1.windows.1

- clone 받을 폴더 생성하기

pc@DESKTOP-AU6L1FT MINGW64 /c
$ mkdir git_test

4. git clone 수행하기

pc@DESKTOP-AU6L1FT MINGW64 /c/git_test
$ git clone https://github.com/cloudnativedevops/demo.git
Cloning into 'demo'...
remote: Enumerating objects: 978, done.
remote: Counting objects: 100% (91/91), done.
remote: Compressing objects: 100% (73/73), done.
remote: Total 978 (delta 27), reused 64 (delta 13), pack-reused 887
Receiving objects: 100% (978/978), 349.49 KiB | 1.85 MiB/s, done.
Resolving deltas: 100% (390/390), done.

5. clone 된 폴더 확인하기

- 지금까지 Windows에서 Git 설치 후 clone 하는 과정에 대해서 알아 보았습니다.

728x90
반응형