-
git 기본 사용법소스관리 2020. 8. 17. 18:42
깃 기본사용법
먼저 https://github.com 사이트에 접속하셔서 회원가입 후 로그인을 해주세요!
1. repository생성
아래의 이미지와 같이 로그인 후 +버튼을 클릭하고 New repository를 클릭해주세요.2. 프로젝트 소스 upload
업로드가되면 내 repository에 소스파일들이 올라온게 보이지만
업로드가 되지않는경우에는$cd /my-project // 프로젝트 파일로 이동 $git init // 초기화 $git add README.md // Readme.md 파일 추가 $git commit -m "first commit" // 메세지와 함께 커밋 $git remote add origin https://github.com/유저명/my-project.git // 저장소 지정 $git push -u origin master // 저장소로 올리기
업로드가되면 내 repository에 소스파일들이 올라온게 보이지만
업로드가 되지않는경우에는$git remote rm origin
업로드 하려고 했던 프로젝트파일 내부로 들어간다.
위의 코드 실행후 다시 진행해보시기 바랍니다.
이후 수정한 코드올릴때 ( 예제소스 )$ git remote rm origin $ git remote add origin https://github.com/username/my-project // 유저명, 프로젝트명 확인!! $ git pull origin master $ git add . $ git commit -m "second upload" $ git push origin master
수정 전 파일로 되돌리기
$git checkout — filename // 수정 전으로 되돌리기