본문 바로가기
[도서 정리] 13. Git 명령어 - ProGit [도서 정리] 13. Git 명령어 - ProGit 13.1. 설치와 설정 * git config * git help -$ git help 13.2. 프로젝트 가져오기와 생성하기 * git init * git clone 13.3. 스냅샷 다루기 * git add * git status * git diff * git difftool * git commit * git reset * git rm * git mv * git clean 12.4. Branch 와 Merge * git branch * git checkout * git merge * git mergetool * git log * git stash * git tag 12.5. 공유하고 업데이트하기 * git fetch * git pull * git p.. 2020. 1. 18.
[도서 정리] 2. Git 의 기초 #1 - ProGit 2. Git 의 기초 #1 - ProGit 2.1. Git 저장소 만들기 -Git 저장소를 만드는 방법은 두가지이다.기존 프로젝트나 디렉터리를 Git 저장소로 만드는 방법이 있고, 다른 서버에 있는 저장소를 Clone 하는 방법이 있다. * 기존 디렉터리를 Git 저장소로 만들기 -$ git init이는 .git 이라는 하위 디렉터리를 만든다..git 디렉터리에는 저장소에 필요한 뼈대 파일(skeleton)이 들어 있다. * 기존 저장소를 Clone 하기 $ git clone [url] [folderName]이는 folderName 이라는 폴더에 url 로부터 내용을 받아와 넣는다. -Git 은 다양한 프로토콜을 지원한다.https://git://user@server:path/to/repo.git ( S.. 2020. 1. 5.
[Q&A] tortoiseGit 에서 git-svn 을 지원하나요? 출처 http://stackoverflow.com/questions/2260283/instructions-on-using-tortoisegit-to-interact-with-an-svn-repository http://stackoverflow.com/questions/894360/is-there-a-git-svn-windows-client-something-like-tortoisesvn 네 자세한 내용은 각설하고 tortoiseGit 이 git-svn 을 지원하는가 여부만 대답한다면, "Yes" 입니다. git-svn command 를 지원하며, git clone -> from SVN repository 를 선택하여 수행하면 된다고 합니다. 참고로 sourceTree 도 지원합니다만, windows 버전.. 2015. 6. 21.
[android] volley library 에 대해 알아보자! 안드로이드, Volley Library 에 대해 알아보자! Android Volley Libary 의 장점 1. 모든 network request 를 자동으로 스케쥴링한다.2. 보이지 않게 disk, memory caching 을 한다.3. 강력한 request 취소 API 도 제공한다.4. customization 도 쉽게 할 수 있다.5. debugging 과 tracing tool 을 제공한다. 써보고 싶어! library 를 구할 수 있는 주소를 알려줘. git clone https://android.googlesource.com/platform/frameworks/volley 2개의 main class. 1. Request queuerequest 를 dispatch 할 때 사용되는 녀석.보통 s.. 2013. 12. 10.
git hub 에러, fatal: https://github.com/xxx.git not found: did you run git update-server-info on the server? github 에러 did you run git update-server-info 어쩌구 해결 방법. 요런 메세지 나오면, repository 주소가 정확한지 한번 다시 확인해보길..필자의 경우 오타가 있었음.. fatal: https://github.com/xxx.git not found: did you run git update-server-info on the server? did you run git update-server-info on the server, fatal, GIT, git clone, git init, git not found, git 에러, github, github 에러, Repository, 오타 2013. 7. 10.
[git] Git Tutorial ( 기초 강좌 ) - 기본 사용 마스터. Git Tutorial ( 기초 강좌 ) - 기본 사용 마스터. Git 시작 git 설정 파일들 - /etc/gitconfig : 시스템의 모든 사용자와 저장소에 적용되는 설정. 아래 명령어로 접근 $ git config --system - ~/.gitconfig : 특정 사용자에게만 적용되는 설정. 아래 명령어로 접근 $ git config --global - .git/config : git directory 에 있고, 특정 저장소( 현재 작업중인 프로젝트 )에만 적용된다. 아래 명령어로 접근한다. config 적용의 priority 는 local > global > system 이다. $ git config --local - 아래 명령어로 설정 내용을 확인할 수 있다. 여러개의 설정 파일들이 있기 때.. 2012. 11. 10.
반응형