git을 이용한 Pair Programming

1. Repository Fork

2. Repository HTTPS Clone

3. Local에 저장

 저장할 디렉토리로 가서 git clone<Repo URL>

4. pair의 Repository에 연결

git remote add pair<Repo URL for pairs fork>
  

git remote -v는 연결상태를 확인할때 쓰인다.

5. 작성한 파일을 Add

git add <change file>

6. Commit

 git commit -m ’change’ 

change는 Commit할 내용

7. Repository에 push

git push origin master(or other branch name)

8. Repository에서 pull

git pull pair master (or other branch name)

역할이 바뀐 드라이버가 Repository에서 pull

5번부터 반복

좋은 웹페이지 즐겨찾기