Open Project/(프로젝트) Smart Wall Watch (Rasp Zero)

<Step3> GitHub 프로젝트 생성

LEEHANDS 2021. 7. 7. 15:42
반응형

1. Github.com --> leehands-society 

필자의 오픈프로젝트 그룹인 Leehands-society 를 통해 프로젝트 생성했습니다.

2. 라즈베리파이에 Git Clone 을 통한 프로젝트 Import

pi 계정 기준으로 작성했습니다.

>mkdir smartwallclock

git 을 처음 등록한다면 유저를 등록합니다.

>git config --global user.email "you@example.com"
>git config --global user.name "Your Name"

------------------- 주요 개발자는 아래 참고 -----------------------------

개발자는 위와 같이 git 운영을 한다.

root@raspberrypi:/home/pi/smartwallclock# git push -u origin main
Username for 'https://github.com': namunny
Password for 'https://namunny@github.com': *****
Enumerating objects: 3, done.
Counting objects: 100% (3/3), done.
Writing objects: 100% (3/3), 224 bytes | 22.00 KiB/s, done.
Total 3 (delta 0), reused 0 (delta 0)
To https://github.com/leehands-society/smartwallclock.git
 * [new branch]      main -> main
Branch 'main' set up to track remote branch 'main' from 'origin'.
root@raspberrypi:/home/pi/smartwallclock#

-------------------- < END > -------------------------------------

이 프로젝트의 소스코드를 Clone 은 아래처럼 웹페이지 참고

녹색의 Code 를 클릭하고 https 를 사용하여 복사를 합니다.

>git clone https://github.com/leehands-society/smartwallclock.git

위와같이 타겟 폴더에 입력하면 소스코드를 불러올 수 있습니다.

 

 

반응형