koos808

자주 사용하는 리눅스 GIT code, command 본문

Ubuntu & Linux

자주 사용하는 리눅스 GIT code, command

koos808 2021. 9. 10. 13:53
728x90
반응형

리눅스 GIT Command

  • git clone(복사) : cd로 원하는 폴더 이동 후 Command 입력
    • git clone http://----.git(주소 복사) commit/ 주소의 git을 commit 폴더로 복사
  • Commit
    • 1.global setting
      • ex) ( 유저네임 , email ,비밀번호)
        git config --global user.email "koos.gu@--.com"
        git config --global user.name "koos.gu"
    • 2.커밋 폴더로 경로 이동 cd 사용
      • 최상위로 이동 : cd ..
    • 3.log 확인
      • git log or git log -1
      • git status
    • 4.Add
      • git add scripts/SFA_XGboost.R scripts/Xgboost.R
      • 여러 파일 한번에 add(추가)하기
          1. git add -i
          1. add unstracked(4번) 진입
          1. 열개 파일 있으면 1,2,3,4,5,6,7,8,9,10 입력
          1. ctrl(컨트롤)+d or ctrl(컨트롤)+c 로 나가기
        • 정상적으로 커밋 후 푸쉬
    • 5.Commit
      • git commit : [detail NOTE] 입력 후 커밋 내용 작성
    • 6.Push
      • git push origin master
    • 7.branch
      • branch 가져올 때
        • git clone -b stage.oper(branch이름) http://----.git 생성폴더이름(안넣어도됨)
      • GIT에서 branch 이후 git clone
        • git clone http://-----.git -b operation(branch이름) oper(생성폴더이름)/
        • oper폴더로 이동 : cd oper/
        • 목록 확인 : ls
        • 폴더가 어떤 branch를 향하고 있는지 확인 : git branch
        • 전체 branch 확인 : git branch -a
        • add, rm, cp -R 등 작업 후 커밋, 푸쉬
          • git add scripts/---.R scripts/--.R
          • git commit -a (변경사항 전체 커밋), git commit 변경파일이름1, 변경파일이름2,... (부분 커밋)
          • git push origin operation(브런치 이름)
    • 8.ls
      • 목록보기
      • 숨김 파일 및 폴더 모두 확인 : ls -ahl
    • 9.파일 이름 및 위치 변경
      • mv preprocess.R preprocess2.R/
    • cd
      • 최상위 경로 이동 : cd /
      • 이전 경로 이동 : cd -
  • 이 페이지 참고하면 좋음 : http://rogerdudler.github.io/git-guide/index.ko.html
728x90
반응형
Comments