일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- js
- EdgeR
- 싱글셀 분석
- drug development
- CSS
- python matplotlib
- github
- ChIPseq
- CUT&RUN
- 비타민 C
- pandas
- Batch effect
- drug muggers
- ngs
- scRNAseq analysis
- single cell rnaseq
- javascript
- single cell analysis
- julia
- scRNAseq
- PYTHON
- HTML
- MACS2
- CUTandRUN
- DataFrame
- matplotlib
- cellranger
- Bioinformatics
- single cell
- Git
Archives
- Today
- Total
바이오 대표
[Git] 파일 삭제 및 이름 변경 (Deleting or renaming files) 본문
< Deleting FIles>
$ git rm [file]
$ git status 에서도 확인 가능 --> deleted 확인)
< Renaming FIles >
$ git mv [file] [file_renew]
< .gitignore >
.gitignore file : A file containing a list of files or filename patterns for Git to skip for the current repo.
( git status에 쓸데없는 noise 가 뜨는것을 방지하기 위해 파일을 무시 )
*활용방법
$ echo [file] > .gitignore
$ ls -la 를 통해 확인 가능
$ git add .gitignore
git mv | Similar to the Linux `mv` command, this moves a file |
git rm | Similar to the Linux `rm` command, this deletes, or removes a file |
'Programming enviorment' 카테고리의 다른 글
[Github] Github (Pull 가져오기 & Push 보내기) (0) | 2022.01.07 |
---|---|
[Git] 작업취소 - git [checkout/reset/commit --amend] (0) | 2021.12.05 |
[Git] Advanced Git Interaction : git [commit -a -m / log -p / log-stat / show ] (0) | 2021.12.02 |
[Git] Git 기본 사용법 (init, config, add, commit) (0) | 2021.11.25 |
[Git] Git Install 설치하기 (0) | 2021.11.21 |