Python Code

Gitlab 사용법

Kimhj 2023. 10. 26. 11:26
# 현재 디레토리를 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