[github] github

github

  1. 원하는 디렉토리 이동
  2. git init : 현재 디렉토리를 로컬 git 저장소라고 알려주는 것
  3. git add .
  4. git commit -m “하고싶은 말”
  5. git remote add origin https://github.com/710csm/RealmTest.git (git 주소는 해당 레파지토리꺼로)
  6. git push -u origin master(main)

git add 취소

  1. git reset (전체 파일 add 취소)
  2. git reset Head 파일 (특정 파일 add 취소)

git commit 취소

1. git reset Head^ (가장 최신 커밋 1개 취소)

3. 꺽쇠 갯수에 따라 최신 커밋을 필요한만큼 순서대로 삭제할 수 있다

$ git push origin [branch name] -f
또는
$ git push origin +[branch name]
// Ex) master branch를 원격 저장소(origin)에 강제로 push
$ git push origin +[branch name]

git push 취소

git ignore 적용

  1. git ignore 생성
    $ touch .gitignore
    
  2. ignore 파일 생성
    .gitignore
    /Pods
    smartlearning.ios.scworkspace/xcuserdata/choeseungmyeong.xcuserdatad/
    .DS_Store