일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
- 베트남어
- 명사 추출기
- 나의 취미
- 스킨 스쿠버
- nodejs express
- 명사 뽑아내기
- 메일왕창보내는법
- Node.js
- docker
- rss
- 주식이야기
- flex3
- iBatis
- 책이야기
- 나의 프로젝트
- ajax
- scala
- 명사 분석기
- php
- Lift
- 디즈니씨
- node.js web framework
- C/C++
- express for node.js
- php thumbnail
- Cross
- ror실행
- ejb
- Eclipse
- 도커
- Today
- Total
목록My Programing/Version Control (2)
nkdk의 세상
이번에는 git 명령어나 정리해 볼까 ㅎ Git command git config --global user.name "nkjason" git config --global user.email jajapan@gmail.com git init git생성 git remote add remote1 git remote add remote1 /home/yosnoop/work/git/tokubuy/.git git fetch remote1 git pull --no-ff --log remote1 master git pull --no-ff remote1 master git diff git reset --hard git pull --no-ff remote1 master git diff git mergetool git diff..
이번에는 github에 소스 올리는 방법을 소개 할까 한다. 리눅스 위주. ssh-keygen -t rsa 키를 생성하고 생성한 곳에서 나온 키를 https://github.com/account에 가서 SSH Public Keys 를 누르고 Add another public key를 클릭한다. 자 다시 리눅스로 돌아 와서 가령 /testrepo 라는 소스를 올리고 싶다면 다음과 같이 한다. ssh-add -l ssh-add ./test ssh-add -l mkdir testrepo cd testrepo/ git init 여러 가지 파일을 넣어 놓는다. git add test git commit -m test git show git remote add test git@github.com:NKJason/..