天天看點

github desktop大法好

1、想要忽略一些不想送出的檔案,比如node_module

可以在目錄下建立一個.gitignore的檔案

然後在裡面把檔案名,或檔案夾/名寫上,比如

//.gitignore檔案
node_modules/
.gitignore
.vscode/           

複制