home.social

#versionmanagement — Public Fediverse posts

Live and recent posts from across the Fediverse tagged #versionmanagement, aggregated by home.social.

  1. There are many ways to distribute Python solutions, and this describes one method. Imagine you need to transfer a solution from a DEV to a PROD environment. It assumes a PROD setup from scratch. This HowTo includes #VersionManagement, #VirtualEnvironment Setup, #PackageManagement and #CodeExecution. #HowToDistributePythonSolutions

    chribonn.medium.com/how-to-dis

  2. A clean Git history is the key to successful teamwork and quick bug fixes. Errors can only be successfully tracked down if it is always possible to trace when and where code was changed by whom and for what reason.

    🥴 However, in the rush of the battle, the changes that are packaged in a commit are sometimes not taken very seriously. Who has never experienced this? A change that is actually unrelated to the current work package has made it into the commit because the file has already been saved temporarily.

    💡The solution: With an "interactive add" (git add -i), you can pack partial changes ("hunks") into a commit and specify line by line what should be included in the next commit.

    :git: "Staging patches": git-scm.com/book/en/v2/Git-Too

    #git #zeroiee #code #programming #opensource #sourceControlManagement #codeManagement #versionManagement #versioning