일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
- Batch effect
- python matplotlib
- EdgeR
- CUTandRUN
- single cell rnaseq
- single cell
- cellranger
- scRNAseq analysis
- matplotlib
- scRNAseq
- Git
- DataFrame
- ChIPseq
- PYTHON
- github
- pandas
- 싱글셀 분석
- ngs
- 비타민 C
- julia
- CUT&RUN
- Bioinformatics
- CSS
- javascript
- single cell analysis
- MACS2
- drug muggers
- HTML
- drug development
- js
- Today
- Total
목록git show (2)
바이오 대표

Undoing Unstaged $ git checkout [file] Undoing Staged $ git reset HEAD [file] Undoing Committed $ git commit --amend "commend" RollBack $ git revert HEAD $ git checkout [file] : Unstaged 상태의 파일이 수정 전으로 돌아간다. $ git reset HEAD [file] : Staged 되었던 파일 --> Unstaged * HEAD : current snapshot * -p flag를 사용하면, modify 할때마다 물어본다 if you want to snapshot or not (commi..

기본 명령어 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..