본문 바로가기

git

GIT정리

GIT(github/gitlab)


git tutorial

https://github.com/KennethanCeyer/tutorial-git


GITLAB(처음시작)

http://recoveryman.tistory.com/251

htttp://milkissboy.tistory.com/75?category=733112 (저장소만들기)


gitlab 폴더올리기

https://sojungarchive0414.blogspot.com/2018/03/2-commit.html

ssh삭제 후 재 설치

http://parkhyunjin.tistory.com/9


▶git 명령어

https://stories.tistory.com/256

https://medium.com/@joongwon/git-git-%EB%AA%85%EB%A0%B9%EC%96%B4-%EC%A0%95%EB%A6%AC-c25b421ecdbd


GITHUB(처음시작)

http://recoveryman.tistory.com/251?category=635733


Github에 username, password 없이 push하기

http://blog.naver.com/PostView.nhn?blogId=hancury&logNo=220778148466&categoryNo=0&parentCategoryNo=10&viewDate=&currentPage=1&postListTopCurrentPage=1&from=search


▶ssh 클라이언트 설정(source tree)

http://blog.upstone.kr/post/530


▶git을 이용한 workflow

https://blog.appkr.kr/learn-n-think/comparing-workflows/

https://gmlwjd9405.github.io/2017/10/27/how-to-collaborate-on-GitHub-1.html

http://jinbroing.tistory.com/35




git 리모트 : git을 원격저장소에 저장하는 앤드포인트(원격 저장소를 관리할 수 있는 명령어)


커밋 전에 반드시 pull을 받아서 코드를 최신으로 유지한다.

git add * 한후 바로 뒤에 git commit -m "커밋내용"써야 push된다


git push origin master

origin : 원격저장소 이름 / master : 현재 사용하는 컴퓨터의 브랜치이름

→ master가 현재 commit이 저장된 곳


commit은 하나의 단위로 취급(최대한 잘게 commit해주는게 좋다. 그래야 나중에 원하는 부분만 되돌리기 쉽다.)