일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- c++ 정규식
- regex_search
- snmp test
- centos pyhon 설치
- 정규식 문자열 출력
- InfluxDB
- linux시간으로 변경
- python os
- c3 step graph
- snmp
- 백준
- g++ 업데이트
- python subprocess
- gcc 업데이트
- 1697
- selinux port 등록
- c3 축 가리기
- grafana dashboard
- gcc regex
- c3 초
- 정규식 컴파일
- influxdb 설치
- c3 second
- subporcess path
- semanage
- CentOS7
- 정규식 활용
- python popen
- telegraf
- c3 축 없애기
- Today
- Total
목록Git (16)
리셋 되지 말자
에러내용 $ git clone https://github.com/Something.git Cloning into 'Something'... fatal: unable to access 'Something.git/': error setting certificate verify locations: CAfile: C:/Git/mingw64/ssl/certs/ca-bundle.crt CApath: none 해결방법 git config --global http.sslverify "false"
git update-index --chmod=+x 파일이름
실수로 MongoDB 접속 url이 그대로 적혀있는 파일을 커밋하고 푸쉬까지 했다... 앞으로는 gitignore에 잘 등록해 두어야 겠다.. https://www.whatwant.com/entry/Git-%ED%8A%B9%EC%A0%95-%ED%8C%8C%EC%9D%BC%EC%97%90-%EB%8C%80%ED%95%9C-%EC%9D%B4%EB%A0%A5-%EC%82%AD%EC%A0%9C Git 특정 파일에 대한 이력 삭제 최근 회사에서 Credential 내역이 노출되어 보안 위협이 된 사례가 발생을 하였다. 즉, 아이디/패스워드, AWS 토큰 값들을 소스파일 안에 적어놓고 그것을 그대로 commit 하여 push 까지 해버린 것이다. www.whatwant.com 감사합니다 ㅠㅠ
git clone 이후, 원격지의 브랜치 명을 사용해서 -t 옵션으로 체크아웃 하면, 해당 브랜치의 내용과 동일한 브랜치가 로컬에 생성된다 git checkout -t origin/feature-branch
git log 했을 때, 변경한 commit 이 맨 아래에 나옴(원래는 최신 커밋이 맨 위에 나옴)
git rebase --abort
247 git branch 248 git checkout translate/883-websocket 249 git branch -a 252 git rebase master 253 git log 254 git status 255 history