About 400 results
Open links in new tab
  1. What is the best local version control tool for personal use?

    A distributed source code control system like Mercurial or Git will provide the best of both worlds - a local repository as well as a remote repository. I would recommend looking at your options …

  2. Should Visual Studio specific files be excluded from version control?

    Jan 18, 2021 · The output of that script can then either be included in version control, or provided in other form for external contributors. The documentation, however, should make clear these …

  3. What are the advantages of version control systems that version …

    Some "per-file" version control systems: CVS ClearCase Visual SourceSafe Some "whole-repository" version control systems: SVN Git Mercurial In my experience, the per-file version …

  4. Is it good practice to store software version numbers in VCS?

    Aug 18, 2015 · Version Control. A file somewhere stores the version number. Continuous Integration (CI) build server will have a script to build the software that uses this checked-in …

  5. Date as software version number

    Jan 19, 2012 · 57 Software developers don't typically use date as version number, though YYYYMMDD format (or its variances) looks solid enough to use. Is there anything wrong with …

  6. Should I store log files in version control - Software Engineering ...

    Aug 28, 2012 · The log files in question are metrics log files. One of them is a project file produced by SourceMonitor, to which I regularly add checkpoints to chart the progress of …

  7. Version control system exclusively on shared drive? - Software ...

    Aug 16, 2016 · What i picture, ideally, is something that is stored on the shared drive that the developer can "branch" and work on a temporary file that merged back to the file that the …

  8. Is there a point to including a "change log" in every code file when ...

    I think that insisting on a change log within the source file is just adding unnecessary friction to the machine and defeats one of the purposes of implementing a version control system in the first …

  9. version control - Git branching and tagging best practices

    Explore related questions programming-practices version-control git branching See similar questions with these tags.

  10. Binaries in source control - Software Engineering Stack Exchange

    Sep 25, 2011 · Alternatively, you can write bash/python/perl/bat script to checkout source and download all other dependant components in a single step. However, I would still recommend …