I want to use git for version control of VB 5.0.
There are many files under the project and I suppose there're some files that should be ignored.
This link provides the .gitignore file for VisualStudio. I'm not sure if it fits VB 5.0.
Especially, I'm not sure whether .vbw and .log under the project should be ignored.
Could you give me some explanation about those extension files?
Which files of VB 5.0 project can I ignore with git?
173 Views Asked by niaomingjian At
1
There are 1 best solutions below
Related Questions in GIT
- problem to push files on a repository git
- diff3 output in git conflict style, including mergeable hunks
- Git Not In Sync with Local Branch
- Setting up the version control of .dotfiles while the .config is connected to a forked repo
- How to fix overriding the main branch in Git?
- I can't add text to "Message" in VS Code when committing to Git
- How can i redirect pull request from main branch to another branch
- Xcode commits (possibly outside of any branch) disappeared, how to get them back?
- Git/TortoiseGit : how to apply ONLY the changes from ONE commit from branch A, to branch B?
- How can I reintroduce username an password on git using fedora?
- GIT SKIP EMPTY DIRECTORIES
- Git smudge run once per checkout or per commit?
- I can't find ~/.profile or ~/.bashrc in C:/Users/<user>/.ssh folder
- Set environment variable during push for GitHub Actions
- Android WebRTC compile
Related Questions in VB5
- Error on Upgrading VB5 code to Vb.net in Visual Studio 2008
- Do i need to change my SQL-Statements in my VB5/VB.net-Application, if i change the used database from Access 97 to Access 365?
- I need Newtonsoft.Json 4.5.0.0 or a way to get Version 13.0.0.0 to work with RestSharp.Net2 for VB
- We are trying to migrate a VB5 program (50k Lines) to VB6 encountering multiple errors
- Getting system time milliseconds
- Connecting VB6 application to SQL Azure Data store
- Using MSXML2.ServerXMLHTTP instead of XMLHTTP for POST requests from VB5 application for handling HTTPS
- Migrating an ancient VB5 program to something newer?
- Error in using winsock in VS2010 : The variable 'Winsock2' is either undeclared or was never assigned
- Convert an unknown database file from a windows software into a MySqli Database
- Which files of VB 5.0 project can I ignore with git?
- Convert a call to old DLL from vb5 to c# - System.BadImageFormatException
- What does the error "wrong version of run-time dll" mean? (VB5 / VB6)
- vb3: change to locale date format
- VB5 and Oracle 11G: Init parameter NLS_NUMERIC_CHARACTERS ignored
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular # Hahtags
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
As mentioned here regarding
vbwfiles:Generally, any file generated (like those listed here), or with local information (like your own Windows positions) should be ignored: they are relevant only for you.