Git 4

Git Collaborator 추가

Github 사용 시 협업하여 프로젝트를 진행하는 유저에게 Push와 Pull 권한을 주기위해 Collaborator 추가에 관해서 정리해보겠습니다. 1. Github 접속 후 Repo Settings 이동 - 권한 설정을 할 Repo 선택 - Settings 탭 이동 2. Collaborator 추가 - Manage Access 클릭 - Invite a collaborator 추가 - Collaborator로 추가할 Username, Email 입력 - 입력 후 Select a collaborator above 선택 시 해당 계정으로 메일로 확인 메일이 발송됩니다. - 해당 Collaborator가 메일 확인 후부터 해당 Repo에 Pull, Push 할 수 있는 권한을 가지게 됩니다.

Git 2020.12.10

Git 원격 저장소

#git clone : 기존의 git repository를 복사 #git clone [주소] : ex) git clone https://gitlab.com/alwys/myproject.git # git remote add origin [주소] : 원격 저장소 연결 : ex) git remote add origin https://gitlab.com/group/project : gitlab.com 웹 호스트 서비스 : group 그룹 명 : project 프로젝트 명 #git remote : 연결된 원격 저장소 이름 확인 #git remote show origin : 원격 저장소 상세 내용 확인 #git remote rename origin git_test : 원격 저장소 단축 이름 변경 #git remot..

Git 2020.10.31

Git 가지치기

1. git branch : 독립적으로 어떤 작업을 진행하기 위한 개념 : 각각의 Branch는 다른 Branch의 영향을 받지 않음 - Main Branch(Master): 배포할 수 있는 수준의 안정적인 Branch - Topic Branch(Master): 기능 추가나 버그 수정과 같은 단위 작업을 위한 Branch 2. git 명령어 #git branch [branch name] : Branch 생성 명령어 # git branch : 현재 Branch 확인 #git checkout [branch name] or [snapshot hash] : Branch 전환 명령어 : snapshot hash git log 명령어로 확인 가능 #git log --pretty=oneline #git checkou..

Git 2020.10.31

Git 시작하기

1. Git 생성 : 저장소 생성 완료 후 Comment.js 파일 작업 완료 후 : 저장소에 해당 내용 반영을 원함 working directory -> staging area [ git add ] staging area -> repository [git commit] [파일의 상태 Life Cycle] Untracked Unmodified Modified Staged 2. Git 명령어 #git add comment.js : comment.js 파일을 staging area로 보냄 #git add user.js : user.js 파일을 staging area로 보냄 #git add . : 현재 디렉토리의 전체 파일을 모두 staging area로 보냄 #git status : Staging area의..

Git 2020.10.31