git 명령어 간단 정리
git 서버에서 저장소 생성
# git init --bare /home/gitrepo/testrepo
클라이언트에서 git 사용자 설정
# git config --global user.email "gituser@example.com"
# git config --global user.name "Git Tester"
로컬 저장소 생성
# git init
git 파일 추가
# git add /path/to/filename
로컬 저장소로 commit
# git commit -m “First Commit”
리모트 저장소 추가
# git remote add origin ssh://gituser@example.com:/home/gitrepo/testrepo
리모트 저장소 보기
# git remote -v
로컬 저장소 파일을 리모트로 commit (origin 은 저장소, master 는 브랜치)
# git push origin master
리모트 저장소 clone
# git clone ssh://gituser@example.com:/home/gitrepo/testrepo
변경된 파일 목록등이 현재 git 상태를 볼려면
# git status
'study' 카테고리의 다른 글
[PHP] 원격 URL의 파일을 로컬로 가져오기 (0) | 2021.12.30 |
---|---|
PHP HTML 파싱 예제 (0) | 2021.12.30 |
일련의 부모 - 자식 관계를 계층 트리로 변환 하시겠습니까? (0) | 2021.12.30 |
당신은 모를 수도 있는 CSS의 7가지 단위 (0) | 2021.12.30 |
안드로이드스튜디오 하이브리드 앱 (0) | 2021.12.30 |