반응형
git login :
git config --global user.name "<name>"
git config --global user.email "<email>"
내가 설정한 git setting을 보고싶을 때 :
git config --list
레포지토리 만들고 싶을 때:
mkdir <git_workspace>
cd <git_workspace>/
git clone <repository주소>
내 레포지토리 안에 파일 만들 때:
touch <HelloWorld.py>
만든 파일을 수정할 때:
gedit <HelloWorld.py>
반응형
'Git, Version control > Github' 카테고리의 다른 글
[github] pull 명령어 사용하기 (0) | 2020.09.03 |
---|---|
[github] git remote 설명, repository 생성 후 원격 저장소에 올리기 (0) | 2020.09.03 |
[github] branch 관리하기 (0) | 2020.09.03 |
[github] add, commit 명령어 (0) | 2020.09.03 |
[github] 특정 branch로 push하기 (0) | 2020.09.03 |