'etc'에 해당되는 글 45건
- 2014.03.22 mint linux, ssh 활성화
- 2014.03.13 [git] 파일 하나만 다른 브런치로부터 가져오기
- 2014.03.05 [git] 파일 하나만 전의 리비전으로 되돌리기
- 2014.03.05 [git] 다른 브랜치의 파일 비교하기
- 2014.03.01 [linux] 파일 찾기, find
- 2014.02.28 [TerminalIDE] vim
- 2014.02.28 [app] 안드로이드에서 개발환경을 만든다! Termianl IDE
- 2014.02.25 [firefox] 파이어폭스 속도 향상
- 2014.02.25 [firefox] 설정 초기화
- 2014.02.18 [git] git, 리모드 브랜치부터 새로운 로컬브랜치를 생성
- 2013.12.15 [vim] copy and paste, 복붙
- 2013.11.13 [etc] 안드로이드 기기, 위치 추적
- 2013.10.28 [git] 마지막 commit commet 수정
- 2013.10.16 정규표현식 테스트 사이트, regex test
- 2013.10.15 [git] git clean, 언트렉킹 파일 제거
- 2013.10.08 [etc] google spreadsheet, countif
- 2013.09.19 [git] git 간편안내서
- 2013.09.19 [git] 다른 branch의 한 파일만 가져오기
- 2013.09.19 [git] git revert, 이전 커밋으로 되돌림
- 2013.09.10 [git] branch 삭제
- 2013.08.13 [mac] terminal에서 현재 위치 finder로 열기
- 2013.07.29 [git] 파일지정해서 이전의 소스로 되돌리기.
- 2013.07.19 [etc] Facebook, Twitter 프로필 이미지 사이즈
- 2013.07.16 [etc] git commit 메세지 수정
- 2013.06.04 [GoogleDoc] 셀비교
- 2013.05.30 ISO 국가코드
- 2013.04.12 [etc] 노트2 + 맥북 : USB 테더링
- 2013.01.08 [mac][terminal] 파일명 일괄변경, 일괄복사, mv, cp
- 2012.12.13 [google] 고급검색 연산자 2
- 2012.11.15 [etc] git 7
git checkout [branch_name] -- [filename]
http://stackoverflow.com/questions/2364147/how-to-get-just-one-file-from-another-branch
git checkout HEAD path/to/file.txt
git checkout [commit revision] [file name]
http://stackoverflow.com/questions/2733873/reverting-a-single-file-to-a-previous-version-in-git
git diff --name-status branch1..branch2
git difftool branch1:config/environment.rb branch2:config/environment.rb
http://blog.firsthand.ca/2011/05/compare-git-branches-compare-two-files.html
https://play.google.com/store/apps/details?id=com.spartacusrex.spartacuside&hl=en
git도 되고
vim도 되고
자바도 되고
심심할 일은 없겠다.
url 입력창 about:config
network.http.pipelining false -> true
앱캐시를 켜는 듯??
git checkout -b test origin/test
http://stackoverflow.com/questions/1783405/git-checkout-remote-branch
우리의 영원한 친구
복사 붙붙붙
**한줄
dd : 한줄잘라내기
p : 붙여넣기
yy : 한줄 복사
p
** 여러줄
v -> v : 영역 지정
y : 복사
p
d : 잘라내기
p
참고로 : undo는 u
https://www.google.com/android/devicemanager
계정에 등록되어 있는 기기의 위치를 알수 있다.
벨소리도 울린다!
git checkout [branch] [file]
하면 파일 하나만 가져온다.
git reset HEAD [file]
git revert [commit 명]
이전의 커밋으로 되돌림.
이력이 남음.
(이력이 남지 않는 것은 git reset)
Local branch 삭제
git branch -d hoge
remote branch 삭제
git push --delete origin hoge
혹은
Local
$ git branch -D bugfix
Remote
$ git branch -rd origin/bugfix
Deleted remote branch origin/bugfix (was 2a14ef7).
$ git push
http://stackoverflow.com/questions/2003505/how-do-i-delete-a-git-branch-both-locally-and-remotely
** 페이스북
프로필이미지 구하기
http://graph.facebook.com/[facebook id]/picture?type=large
small 50x50
normal 100x100
large 180x180
** 트위터
http://a0.twimg.com/profile_images/3441454604/cffb106a40dd3b574fdc6b6424944c34_normal.jpeg
url의 normal을 bigger나 mini로 바꾸어주면 이미지를 얻을수 있다.
bigger : 73 x 73
normal : 48 x48
mini : 24 x 24
git commit --amend -m "your new message"
http://stackoverflow.com/questions/179123/how-do-i-edit-an-incorrect-commit-message-in-git
노트2
> pdanet 설치
USB debug 모드
맥북
> http://www.junefabrics.com/iphone/mac.php 에서 pda넷 설치
connet
--> OK!
일괄 변경
ls | sed "s/\(.*\)변경전파일명의문자열\(.*\)/mv '&' '\1변경후파일명의문자열\2' /" |sh
ex ) png파일의 끝에 _thumb를 붙임
a.png → a_thumb.png
ls | sed "s/\(.*\).png\(.*\)/mv '&' '\1_thumb.png\2' /" |sh
일괄변경 & 일괄복사
*.png -> *_thumb.png 같은 디렉토리에 일괄복사
find ./ -name "*.png" | sed -e 'p' -e 's/.png/_thumb.png/g' | xargs -n 2 cp
*.png -> *_thumb.png 로 이름 바꿈
find ./ -name "*.png" | sed -e 'p' -e 's/.png/_thumb.png/g' | xargs -n 2 mv
*** 특정 사이트 검색
site:
keyword site:yahoo.com <- 사이트 지정 검색
keyword -site:yahoo.com <- 지정 사이트 제외 검색
*** filetype 지정 검색
filetype:pdf <- pdf 파일 검색
*** 메일 고급검색
http://support.google.com/mail/bin/answer.py?hl=ko&answer=7190
怖くないgit [日本語]
사용법(생성부터 발행까지)
git clone [URL]
stash : 완결되지 않은 작업을 저장.
git stash save
#저장되어 있는 stash들 보기
git stash list
#stash를 꺼내와서 적용
#stash들은 stack에 저장된다. 따라서 가장 최근에 save한 stash가 현재 branch에 적용된다.
git stash pop
#git stash pop 과 비슷한 명령어지만 stash list에서 삭제하지 않는다는 점이 다르다.
git stash apply
#필요 없는 stash를 삭제
git stash drop
#전체 stash list를 삭제
git stash clear