
git clone 주소
깃허브에서 주소 복사해서 가져오기
git init
깃 레포지토리로 설정
git remote add origin 주소
깃허브 remote 저장소의 주소를 설정해준다.
(확인)
로컬에서 작업할 때 주로 사용하는 명령어들입니다.
git status
git log
git commit
git add
git branch
git checkout
깃헙 등 온라인으로 깃을 활용할 때 사용되는 명령어들입니다.
git push
git pull
git fetch
git merge
git remote
#shell 명령어
cd
ls
pwd
#git 관련
git clone https://github.com/{github_id}/ds-sa-simple-git-flow
git add .
git commit -m '{메시지}'
git push origin main
#conda 관련
conda deactivate
conda create -n {가상환경 이름} python=3.8
#과제 점수 확인 및 제출 관련
pip list
pip install -r requirements.txt
python -m pytest
python -m pytest tests/Part_1
python -m pytest --submit
python -m pytest --score
python -m pytest --all