초기설정
repository에서 local로 가져오기
repository의 URL을 복사한다
Git clone Url
git pull
clone
후에는 pull
을 사용해서 최신 파일을 끌어오면 된다.push
해야함 -> pull
하지않고 push
하면 충돌이 일어날 수 있음Shared Repository
git remote add origin url
에서 origin
는 나에게 권한이 있다는 뜻
share 방법
repository의 settings 클릭
왼쪽 목록에서 collaborators 클릭
Add people 클릭
협업하고 싶은 사람의 이메일로 요청을 보낸다
파일 수정
vi {file}
i : 인서트 모드 (파일 수정가능한 상태)
esc : 모드 끄기
shift + : 명령어 입력
q : 끄기 (수정사항이 있으면 안꺼짐)
q! : 강제 끄기 (저장 안됨)
wq : 강제 저장 후 끄기