[리눅스] git 명령어 tab으로 완성하기 아래 명령어로 git-completion을 설치 $ curl https://raw.githubusercontent.com/git/git/master/contrib/completion/git-completion.bash -o ~/.git-completion.bash && echo "source ~/.git-completion.bash" >> ~/.bash_profile && source ~/.bash_profile Tips/GIT 2020.03.11
Windows GIT (msys GIT)에서 Clone 에러 - Protocol https not supported or disabled in libcurl 출처: http://blog.naver.com/hursh1225/40192159662 C:\Windows\System32\libcurl.dll 파일을 삭제 Tips/GIT 2014.02.02
[Git] 형상관리 하지 않을 파일 설정 .git 디렉토리가 있는 위치의 .gitignore 파일또는.git/info/exclude 파일에 다음과 기술 (#은 주석) # git-ls-files --others --exclude-from=.git/info/exclude# Lines that start with '#' are comments.# For a project mostly in C, the following would be a good set of# exclude patterns (uncomment them if you want to use them):# *.[oa]# *~*.apk*.class*.dex*.ap_ Tips/GIT 2013.02.24
[Git] 우분투에 Git 최신 버전 설치 우분투에 Git 최신 버전 설치우분투에 Git 최신 버전을 빌드하기 위해서는 먼저 의존 관계에 있는 프로그램을 설치해야 한다.>sudo apt-get build-dep git-core git-doc Git 사이트에서 Git 최신 버전을 다운로드한다.http://kernel.org/pub/software/scm/git/git-1.6.1.3.tar.gz (2009년 3월 5일 현재)압축을 푼 후 디렉토리로 이동한다.기본 디렉토리 아래에 설치하고자 한다면 다음과 같다.>./configure >make >sudo make install 설치 경로를 바꾸고자 한다면..>./configure --prefix=/usr/local/git >make >sudo make install 우분투 설치 후 gitk와 git-g.. Tips/GIT 2013.02.24
Windows Git (msysGit)에서 diff / mergetool 설정하기 출처: http://www.davesquared.net/2009/02/setting-up-diff-and-merge-tools-for-git.html diff / merge 툴 설치원하는 diff/merge tool을 설치합니다. 여기서는 DiffMerge를 사용했습니다.DiffMerge.exe는 http://www.sourcegear.com/diffmerge/ 에서 구할수 있습니다.프로그램 설치 경로는 알아서 하시면 됩니다. 원문대로 하면 공백문자를 인식하지 못하므로, git-diff-wrapper.sh를 읽기 위해 환경변수의 PATH에 C:\Program Files\Git\cmd 경로를 추가하도록 합시다.(참고. Git 바로가기 설정: C:\WINDOWS\system32\cmd.exe /c ""C:\.. Tips/GIT 2012.02.24