Develop

Github Command

github 명령어 정리

Github Command

Github Command


처음 실행

Copy
git init # git 초기화 처음에만 실행
git add . # 현재 폴더 모두 올리기
git status # 상태 출력
git commit -m "first commit"

git remote add origin https://github.com/netwaif/video.git # 연결고리
git remote -v # 연결고리 확인 
git push origin master # 최종 올리기

이후의 실행

Copy
git add .
git status
git commit -m "second commit"
git push origin master