TIP
Git 명령어 모음
Jay Son 아기 냥이 해린 짱💖
2020. 6. 19. 11:15
반응형
github를 이용하여 Git 사용 예제.
개인 서버에 Git을 설치하여 운영 할 경우 Git 경로만 github 경로 -> git 서버 경로로 변경
$ echo "# PerformanceTest" >> README.md (프로젝트 명)
$ git init
$ git add README.md
$ git commit -m "first commit"
$ git remote add origin https://github.com/JsonCorp/PerformanceTest.git (프로젝트 git 경로)
$ git push -u origin master
2. Git 버전 확인
$ git --version
Git - git Documentation
We divide Git into high level ("porcelain") commands and low level ("plumbing") commands.
git-scm.com
반응형