일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- express for node.js
- 도커
- 메일왕창보내는법
- php thumbnail
- 나의 취미
- ror실행
- 명사 뽑아내기
- C/C++
- ajax
- node.js web framework
- rss
- 책이야기
- nodejs express
- docker
- php
- iBatis
- Lift
- 스킨 스쿠버
- 명사 분석기
- 주식이야기
- Eclipse
- flex3
- scala
- Cross
- 디즈니씨
- 베트남어
- Node.js
- 명사 추출기
- ejb
- 나의 프로젝트
- 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/..