Git 과 GitHub 를 이용한 버전관리와 협업 - 3주차 - 코드 기여하기/기여받기,...

Post on 14-Apr-2017

151 views 3 download

Transcript of Git 과 GitHub 를 이용한 버전관리와 협업 - 3주차 - 코드 기여하기/기여받기,...

-

-

-

-

git remote add upstream <원래 저장소 URL>

git pull upstream <작업중인 가지 이름 (ex:master)>

-

-

-

-

-

-

-

-

-

-

-

-

저장소연동을켰으면, 바로옆에설정버튼을눌러설정합시다

.travis.yml 있는경우만빌드

들어오는 push 빌드

Pull Request 요청빌드

동시작업제한

language : <사용 언어 이름>

language : c

compiler : gcc

before_install :

- echo “before install”

install :

- echo “install”

script :

- gcc test.c -o test

- ./test

language : ccompiler : gccbefore_install :

- echo “before install”install :

- echo “install”script :

- gcc test.c -o test- ./test

git add .git commit “Travis CI test”git push