Git clone, commit, push

2024. 1. 6. 20:20가상환경 및 라이브러리 설치

1. Local(내 컴퓨터)에 다운받을 장소로 이동 후

git clone http:github.com/

 

2. Local에서 해당 폴더로 이동

cd foldername

 

3. git 초기화

git init

 

4. 사용자 등록

git config --global user.email 'email@com'
git config --global user.name 'myname'
git config --global credential.helper store #commit 마다 비밀번호 입력하지 않게 설정

 

 

git commit -m 'message'

 

git remote

 

git push origin main