Questions tagged as 'versionamento'

2
answers

Handle large files with GIT

Scenario Some time ago, I tried to use GIT to version some backups, mostly small files, git behaved very well versioning them when they were not big changes from one commit to another, but on a specific server, there were large binary files,...
asked by 22.01.2014 / 13:46
3
answers

What is the appropriate amount of changes to commit?

I've noticed that in many public projects in GitHub , commits usually contain very minor changes. There are several instances of commits with changes to a single line of code. In others, there are changes only in comments, not in code. I...
asked by 29.05.2014 / 13:53
2
answers

What could justify the leap of a number in a versioning system?

I noticed that the much-touted PHP 6 was canceled. Then, mysteriously, version 5 jumped straight into version 7. I then had a question about the development of libraries and their versioning numbers: Is there any plausible justification...
asked by 19.01.2017 / 12:57
2
answers

When should I keep or delete a branch?

I'm working on a project and I'm starting to use a versioning control system, Git. When I create a branch to introduce a new functionality and after finishing it, I make a merge with master . What is the best practice to a...
asked by 22.10.2015 / 13:59
1
answer

Increasing the AssemblyVersion

I'm creating an update solution for an application that I have and I needed the Assembly version When putting a * in the assembly. [assembly: AssemblyVersion("1.0.0.*")] It started incrementing automatically, however the shape you are in...
asked by 02.04.2014 / 21:02
1
answer

Release configuration options in Debug and Release mode in Delphi

In Delphi projects, we have Debug and Release options Build Configurations . IknowthatDebugmodeisusedtodebugtheapplicationandthatitgeneratesalargerexecutablebyaddingcuepointstothedebugger.Releasemodenolongerincludesdatumsandgenerate...
asked by 07.05.2014 / 21:38
1
answer

Deploy with GIT x Deploy with Gulp

I still can not figure out what the best deploy of a site is. I explain the way I'm doing: GIT I started a local repository I hosted my repository on some service like GitHub / Bitbucket I joined the server via SSH and clone the dir...
asked by 09.07.2015 / 13:34
1
answer

How to use git to organize my development, approval and production environment?

We are adopting the use of a homologation server here in our company, but we still do not know how to organize the development flow from this paradigm, since currently each developer when it wants to consolidate the implemented modifications per...
asked by 26.11.2014 / 17:43
2
answers

SQL Server 2005 and row versioning

In my current scenario, every Friday, I need to list all rows in a table that have been added or changed. In this table we have a DataDeInclusao field that obviously receives the date of inclusion of that record. My problem is to li...
asked by 16.04.2014 / 16:04
1
answer

What are the suffixes of NPM versions and what do they do?

In Node.js environment when we are going to get modules from NPM you can use suffixes to specify versions . For example, in package.json I see many times: "dependencies": { "async": "~1.4.2", "express": "^4.13.3", What...
asked by 05.09.2015 / 22:39