git&github 를 이용한 버전관리와 협업 - 4.협업과 지속적 통합

Post on 08-Apr-2017

56 Views

Category:

Software

3 Downloads

Preview:

Click to see full reader

TRANSCRIPT

• git remote add upstream < URL>

• git pull upstream master

• language : < >

• language : c

• compiler : gcc

before_install : - echo “before install”

install : - echo “before install”

script : - gcc test.c -o test - ./test

language : c compiler : gcc before_install :

- echo “before install” install :

- echo “before install” script :

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

• git add .travis.yml

• git commit -m “Added Travis CI Integration”

• git push

• git add .

• git commit -m “test push for testing Travis CI”

• git push

top related