본문 바로가기

my_lesson/_GIT14

GIT - Edit file GIT - Edit file github.com에서 편집할 파일을 선택하고 클릭한다. remote(github.com)에서 편집한 내용을 local(내컴퓨터)에서 적용하려면 기존 파일 수정만 한 경우 해당 프로젝트 폴더에서$ git merge 새로운 파일을 만들었을경우$ git fetch 새로운 파일 + 기존파일을 수정 했을 경우$ git fetch && git merge 또는$ git pull 2018. 3. 24.
GIT - Fork your own copy GIT - Fork your own copy Github 검색란에 키워드를 넣고 검색하여 보자. 빨강색 사각형부분을 주의하여 살펴보자. 마음에 드는 카테고리의 언어를 찾았다면 이젠 선택한 저장소를 Fork해보자 Fork란 말 그래로 맘에드는 어떤것을 포크로 콕 찍어서 먹을 때 사용하는 도구인데 여기서도 마찬가지로 콕 찍어서 가저온다. 여기에서는 다른 사람의 것을 콕 찍어서 내것으로 만드는 것을 말하는데 각각 저장소마다 정해진 규약(Lisence: MIT, Apache, GPL...등)이 있으므로 그 규약을 잘 이행해야한다.Fork를 하였으면 README.md 파일을 읽어보자. InstallationTest suiteLisenceUsageBuilding., and so on.... Fork 를 한다는 것은.. 2018. 3. 24.
GIT - React + Yarn + Github React + Yarn + Githubhttps://github.com/facebook/react 에 github로 기여 해보기 위해서 fork -> clon -> translation README.md to README_KOR.md -> pull-request하는 중에 난관에 봉착했다. 아래 내용들을 수행한 다음 pu;l;-request하란다...해보자....... Before submitting a pull request, please make sure the following is done:Fork the repository and create your branch from master.Run yarn in the repository root.If you've fixed a bug or added .. 2017. 10. 23.
Git - GITHUB +ATOM 사용 설정하기 Git - GITHUB +ATOM 사용 설정하기GITHUB 가입하기GITHUB 설치GITHUB 설정GITHUB 중급 1. Fork 하기 : Fork를 안하고 자신의 프로젝트로 하려면 4번 으로 이동한다.먼저 fork 할 프로젝트를 선택한다. github 는 Fork 테스트를 위해 Spoon-Knife 라는 repository 를 제공하고 있으니 이 프로젝트를 Fork해보자.Spoon-Knife 프로젝트로 들어간후에 우측 상단의 Fork 를 누른다.2. Clone 하기 :성공적으로 Fork 되면 내 repository 에 Spoon-Knife 프로젝트가 생성된다. 이제 clone 해서 local에서 작업 환경을 만들어 보자. URL중 username 은 자신의 github Id 로 변경해야 한다.https.. 2017. 10. 22.
GIT - GITHUB 사용법 [중급] Github 사용법 [중급] 1. Github먼저 Github.com에서 repository를 생성한다. 가입 및 생성git clone https://github.com/khjoony/MovieList.gitecho "test file" >> test.txtgit add test.txtgit commit -m "test commit"git remote add origin https://github.com/khjoony/MovieList.gitgit push -u origin master …or push an existing repository from the command linegit remote add origin https://github.com/khjoony/MovieList.gitgit push.. 2017. 4. 22.
GIT - GITHUB Create SSH key GITHUB - Create SSH keyCopy the SSH key to your clipboard. If your SSH key file has a different name than the example code, modify the filename to match your current setup. When copying your key, don't add any newlines or whitespace.$ sudo apt-get install xclip # Downloads and installs xclip. If you don't have `apt-get`, you might need to use another installer (like `yum`) $ xclip -sel clip < ~/.. 2016. 5. 12.