which type of VS files should be committed into a version control system

 

which type of VS files should be committed into a version control system?html

  • aps, no: last resource editor state
  • cpp, yes: source code
  • exe, no: build result
  • filters, yes: project file
  • h, yes: source code
  • ico, yes: resource
  • idb, no: build state
  • ipch, no: build helper
  • lastbuildstate, no: build helper
  • lib, no: build result. Can be 3rd party
  • log, no: build log
  • manifest, no: build helper. Can be written yourself.
  • obj, no: build helper
  • pch, no: build helper
  • pdb, no: build result
  • rc, yes: resource script
  • rc2, yes: resource script
  • res, no: build helper
  • sdf, no: intellisense dbase
  • sln, yes: project file
  • tlog, no: build log
  • txt, yes: project element
  • user, no: debug settings. Do preserve if just one dev or custom debug settings
  • vcxproj: yes: project file

 

from VC的IDE使用技巧大全:
------------------------------
opt 工程關於開發環境的參數文件。如工具條位置等信息;

.aps (AppStudio File),資源輔助文件,二進制格式,通常不用去管他.

.clw ClassWizard信息文件,其實是INI文件的格式,有興趣能夠研究一下.有時候ClassWizard出問題,手工修改CLW文件能夠解決.若是此文件不存在的話,每次用ClassWizard的時候繪提示你是否重建.

.dsp (DeveloperStudio Project):項目文件,文本格式,不過不熟悉的話不要手工修改.DSW(DeveloperStudio Workspace)是工做區文件,其餘特色和DSP差很少.

.plg 是編譯信息文件,編譯時的error和warning信息文件(其實是一個html文件),通常用處不大.在Tools->Options裏面有個選項能夠控制這個文件的生成.

.hpj (Help Project)是生成幫助文件的工程,用microsfot Help Compiler能夠處理.

.mdp (Microsoft DevStudio Project)是舊版本的項目文件,若是要打開此文件的話,會提示你是否轉換成新的DSP格式.

.bsc 是用於瀏覽項目信息的,若是用Source Brower的話就必須有這個文件.若是不用這個功能的話,能夠在Project Options裏面去掉Generate Browse Info File,能夠加快編譯速度.

.map 是執行文件的映像信息紀錄文件,除非對系統底層很是熟悉,這個文件通常用不着.

.pch (Pre-Compiled File)是預編譯文件,能夠加快編譯速度,可是文件很是大.

.pdb (Program Database)記錄了程序有關的一些數據和調試信息,在調試的時候可能有用.

.exp 只有在編譯DLL的時候纔會生成,記錄了DLL文件中的一些信息.通常也沒什麼用.

.ncb 無編譯瀏覽文件(no compile browser)。當自動完成功能出問題時能夠刪除此文件。build後會自動生成。工具

 

參考:ui

http://stackoverflow.com/questions/3922660/which-visual-c-file-types-should-be-committed-to-version-controlspa

http://blog.csdn.net/icycoffee/article/details/1670452.net

相關文章
相關標籤/搜索