# 현재 디레토리를 Git 레포지토리로 설정
git init
# git add all
git add .
# commit
git commit -m "MESSAGE"
# REPOSITORY Clone
git clone "Git 주소"
# config 설정
git config --global user.name "NAME"
git config --global user.email "EMAIL"
# git 상태확인
git status
# git add all
git add .
# commit
git commit -m "MESSAGE"
# push
git push -u origin master
'Python Code' 카테고리의 다른 글
python Image Tranforms (이미지 전처리) (0) | 2023.10.28 |
---|---|
파이썬(python) 통계분석 코드 [T test][Chi-square] (0) | 2023.10.28 |
이미지 데이터 딥러닝 학습 코드 (0) | 2023.10.25 |
파일 크기 확인 코드 (Python) (1) | 2023.10.18 |
머신러닝/딥러닝 성능 측정 함수 (0) | 2023.10.12 |