git上传空目录

谁践踏了优雅 2023-05-21 15:22 17阅读 0赞

git的机制导致创建了目录,但是目录中没文件也不会上传此目录;通过了解git语法可知;我们可以在所创建的目录中添加一个.gitignore文件,其内容如下:

  1. # Ignore everything in this directory
  2. *
  3. # Except this file
  4. !.gitignore

忽略此目录中,除改文件外的其余所有文件;

C中常用的.gitignore内容如下:

  1. # Prerequisites
  2. *.d
  3. # Object files
  4. *.o
  5. *.ko
  6. *.obj
  7. *.elf
  8. # Linker output
  9. *.ilk
  10. *.map
  11. *.exp
  12. # Precompiled Headers
  13. *.gch
  14. *.pch
  15. # Libraries
  16. *.lib
  17. *.a
  18. *.la
  19. *.lo
  20. # Shared objects (inc. Windows DLLs)
  21. *.dll
  22. *.so
  23. *.so.*
  24. *.dylib
  25. # Executables
  26. *.exe
  27. *.out
  28. *.app
  29. *.i*86
  30. *.x86_64
  31. *.hex
  32. # Debug files
  33. *.dSYM/
  34. *.su
  35. *.idb
  36. *.pdb
  37. # Kernel Module Compile Results
  38. *.mod*
  39. *.cmd
  40. .tmp_versions/
  41. modules.order
  42. Module.symvers
  43. Mkfile.old
  44. dkms.conf

其余常用语言的.gitignore请参考:Link

发表评论

表情:
评论列表 (有 0 条评论,17人围观)

还没有评论,来说两句吧...

相关阅读

    相关 git目录

    git的机制导致创建了目录,但是目录中没文件也不会上传此目录;通过了解git语法可知;我们可以在所创建的目录中添加一个`.gitignore`文件,其内容如下: I