일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- Batch effect
- cellranger
- drug muggers
- Bioinformatics
- scRNAseq
- CUTandRUN
- julia
- single cell
- single cell analysis
- python matplotlib
- 싱글셀 분석
- 비타민 C
- pandas
- github
- matplotlib
- CSS
- PYTHON
- js
- drug development
- Git
- single cell rnaseq
- EdgeR
- DataFrame
- ChIPseq
- scRNAseq analysis
- MACS2
- ngs
- javascript
- HTML
- CUT&RUN
- Today
- Total
목록git log (2)
바이오 대표
기본 명령어 git [init/ config/ add/ commit] 에서 조금 더 활용적으로 사용하기 좋은 명령어이다. (Git 기본 사용법 (init, config, add, commit)) git commit -a -m git log -p git lot --stat git show $ git commit -a -m "message" 파일을 조금 수정할 때, staging area 를 스킵하고 바로 commit 을 할 수 있다. - a : stage와 commit 을 한번에! (shortcut to stage any changes to tracked files and commit them in one step) - m : message * Git uses the HEAD alias to represe..
Git Project Git Directory - 과거의 모든 파일들과 수정 내용들 저장소 Working Tree - 프로젝트의 현재 상황 Staging Area - 다음 commit 에 바뀔 내용들 파일을 트랙킹 할때 크게 세가지 state로 구분할 수 있다. [1] Modified - changed but not commited yet [2] Staged - changes are ready to be committed (mark changed for tracking) [3] Committed - stored in the git directory Git 을 이용한 File tracking 의 기본 work flow 는 다음과 같다. Step 0..