바이오 대표

[Git] 파일 삭제 및 이름 변경 (Deleting or renaming files) 본문

Programming enviorment

[Git] 파일 삭제 및 이름 변경 (Deleting or renaming files)

바이오 대표 2021. 12. 2. 01:12

 

 

< 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