일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 트랜잭션
- 스프링
- mysql
- sql
- Java
- 마이바티스
- mybatis
- SonarQube
- ElasticSearch
- slave node
- Elk
- Gradle
- heap메모리
- 아파치
- JVM
- spring
- Stash
- nodejs
- 엘라스틱서치
- 시스템운영
- 레드마인
- Git
- springboot
- 자바
- Apach
- npm
- 리눅스
- DB
- orm
- Bitbucket
- Today
- Total
목록git (4)
프로그래머호이잇
error: RPC failed; curl 18 transfer closed with outstanding read data remaining fatal: fatal: The remote end hung up unexpectedly early EOF fatal: index-pack failed 위와 같은 에러가 발생시 아래 와 같이 입력해줍니다 git config --global http.postBuffer 524288000 용량이 큰 파일을 pull 하거나 push 하실때 발생할 것으로 생각이됩니당!
저는 yum으로 설치하니 git 1.8.1 버전..ㅠㅠㅠ 높은 버전이 필요하여 소스설치하였습니다!! wget https://github.com/git/git/archive/v2.4.12.tar.gz $ tar -zxf git-2.4.12.tar.gz$ cd git-2.4.12$ make configure$ ./configure --prefix=/usr$ make all doc info$ sudo make install install-doc install-html install-info 혹시나 진행중 요런 에러가 나올시에는Can't locate ExtUtils/MakeMaker.pm in @INC (@INC contains: /usr/local/lib64/perl5 /usr/local/share/perl5..
mkdir 생성이름.git cd 생성이름.git git init --bare --share 그후 git clone ssh://유저@IP/경로 로 clone을하여 이용하시면 됩니다!! 물론 유저는 해당 디렉토리 권한과 ssh 연결이 정상적인 유저로 이용하세요~