본문 바로가기

Service/Git & GitHub4

Introduction to Git and Github - Week 4 Collaboration ToolPull request create 한다음, allow 받으면 merge 됨 == 같이 collaborate 하는 거 github 통해서fork == creating new 갈라짐, for our user , include file, commit history  그럼 우리 branch 에 올라가고 , 이제 pull request 해서 master branch 에 merge 하면 되는 식  만약 pull request allow 못받고 comment 받은 상황이라면, 그 pull request파일 수정 하고 다시 올려야함  github의 commit tab에   Squashing Changeshttps://docs.github.com/en/pull-requests/colla.. 2022. 2. 20.
Introduction to Git and Github - Week 3 Working with remotes -> Github 쓰면 가능각각 개발자들이 로컬에 git 을 두고 중간에 upload 하는거를 remote 라고 함 -> 이 작업을 통해, 다른 개발자들이 server에 접근해서 코드를 real time 으로 sync 하고 뭐 하는식 으로 일을 함 Github저렇게 내 로컬컴퓨터를 쉐어 서버로 두려면, 호스팅 해야되고 하니까 귀찮아서 github라는 서로 git을 공유 하는 centeral server service 가 나옴github에서 코드 가져와서 내 로컬 컴퓨터로 돌리는식 bitbucket or gitlab 같은 비슷한게 많음repository size에 따라 돈 charging 함 github account 만든다음, 내 repo 만들어서 코드 쉐어하고, 다.. 2022. 2. 18.
Introduction to Git and Github - Week 2 Using git locally What is the Branches in git? git commit -a HEAD는 어떤 커밋 하나를 가르키고 있는 것이다. (참고로 커밋이 저장되는 곳은 repository이므로 HEAD는 repository에서 커밋을 가르킨다.) 보통 가장 최근에 한 커밋을 가르킨다. 그렇기 때문에 가장 최근에 한 커밋에 HEAD가 나타나는 것을 볼 수 있다. [출처] [Git/GitHub] 18. HEAD와 git reset|작성자 미니밍 "}_##]Head can be a commit in a different branch of the project 브랜치(branch)란 하나의 코드 관리 흐름을 나타내는 것​으로 '나뭇가지'라는 뜻을 가진다.​커밋을 할 때, 첫번째로 해준 커.. 2022. 2. 16.
Introduction to Git and Github - Week 1 How to use Version Control Systems(VCS) Git == repository 나눠서, command 입력해가지고 github 에 있는 storage control 하는 software 인듯github == Code sharing 할수있는 platform Version controlautomation script 계속 접할 것임.그리고 administration role 할때 documentation control 이나 이런게 엄청 중요한 걸 알게 될 거임새로운 code implement 했을때 잘 못될 경우를 대비해서 VCS 를 쓰는 거임. diff and patch Git == Tracking of chaging  diffing files파일 두개 comparison  하개 .. 2022. 2. 16.