Most voted "versioning" questions
Versioning is the process of assigning names of any single version or single version numbers to unique file states and computer directories. Within a certain category of version number (larger, smaller), these numbers are usually assigned in ascending order and correspond to new developments in the software.
Learn more…153 questions
Sort by count of
-
151
votes3
answers25811
viewsWhat are the differences between Git, SVN and CVS?
What are the advantages, limitations and main differences between these 3 versioning systems, Git, SVN and CVS?
-
60
votes7
answers8794
viewsHow to Convert Mysql Database?
In the development of a web portal, using the git we made the control of everything that was changed at code level in the approval environment and with the Jenkins We moved the site to the…
-
59
votes3
answers74263
viewsWhat is the difference between the 'git pull' and 'git fetch' commands?
I’d like to know the difference between the commands git pull and git fetch in git versioning software.
-
44
votes5
answers7270
viewsWhat is the difference between a "branch" and a "tag"?
In Git, what is the difference between a branch and a tag?
-
40
votes3
answers20821
viewsHow to define a software version?
I would like to know what the number of software versions are and how they work, for example v1.1.2 what does ? Is there any standard or recommendation for web application versions ?…
-
36
votes3
answers2113
viewsWhy use Git for individual development?
In 2008 I asked an OS question about version control for solo developer and received an excellent response from Jon Skeet indicating the use of SVN. Unfortunately it was recently closed and removed.…
-
32
votes6
answers98339
viewsHow do I undo the last commit in Git?
I accidentally committed the wrong files to Git. How to undo this?
-
29
votes1
answer1008
viewsWhen to increment the version using Semantic Versioning?
When using Semantic Versioning we define different versions in the X.Y.Z format being X, Y, Z nonnegative integers. Thus, given an X.Y.Z version: We increment X if a modification incompatible with…
-
28
votes4
answers15336
viewsIn Git, how do I edit the description of a commit already made?
In case you need to change the description of a commit, to make the description clearer, or to specify which Issue he is bound. I would like to know how to edit the message that accompanies the…
-
22
votes1
answer1448
viewsHow do you decide whether an application is in alpha, beta, RC or RTM?
Each Windows has alpha, beta, RC and RTM versions, and as you advance from left to right in these versions it gets more "ready". As for RC and RTM, I don’t know if this is used in other software,…
-
22
votes2
answers4841
viewsHow does the merge work?
I created another branch as backup and give merge in it, suppose I’m in branch daniela3: git merge origin/develop Only my branch daniela3 will be affected or origin/develop too? I mean, I’ll be…
-
20
votes1
answer7076
viewsWhat’s the point of git push -u?
I’ve seen a lot of people asking questions about possible errors in GIT and noticed that sometimes it involves -u. For example Error in Android Studio 2.3 Integration with Gitlab and Error while…
-
19
votes2
answers18808
viewsWhat’s a pull request for?
I am working as a team in bitbucket and I would like to know what a pull request is for. On what occasions we should use this feature.
-
14
votes3
answers3855
viewsDifferences between Git and Mercurial
What are the main differences, advantages and limitations of these two distributed version control systems? If anyone has practical experience in both (for example I only know the Mercurial more…
-
14
votes2
answers877
viewsIs there a specific rule for commit messages in versioning systems like Git?
The people here where I work, for a certain period of time, used to not care about the messages that they wrote when making a git commit around here. It seems that Git was simply "a place to save…
-
14
votes2
answers22374
viewsHow do I delete commit from a branch in Git?
How can I exclude commit of a branch? I made an attempt to try and delete one commit I didn’t want to, but I ended up making the situation worse. I’m afraid to do something wrong. Git tells me to…
-
14
votes4
answers1174
viewsHow do I share a Java project with a team?
Does anyone know of a versioner that allows teamwork using Java? For example, a Word Online, where everyone changes the file in real time, and the changes are saved on the server.…
-
13
votes2
answers1282
viewsHandle large files with GIT
Setting Some time ago, I tried to use GIT to restore some backups, mostly small files, git behaved very well by versioning them when the changes from one commit to another weren’t big, but on a…
-
12
votes3
answers1828
viewsHow does version naming work for private or public projects?
I’m developing a project that serves as bootstrap for future contributions via Git, and would like to know which version scheme is most used, say "version" relative to the state the software is,…
-
11
votes5
answers838
viewsIs it possible to integrate GIT with some task manager?
Is there any way to integrate some task manager (let’s say, Trello) where the developer, when giving a commit in his activity, makes the association of the same with some specific task? In research…
-
11
votes2
answers239
viewsWhat could justify the jump of a number in a versioning system?
I realized that the long-dreamed PHP 6 has been canceled. Then, mysteriously, from version 5 jumped directly to version 7. I then had a doubt about the development of libraries and their respective…
versioningasked 7 years, 10 months ago Wallace Maxters 102,340 -
10
votes3
answers1922
viewsWhat is the appropriate amount of changes to a commit?
I have noticed that in many public projects Github, the commits usually contain very small changes. There are several cases of commits with changes in a single line of code. In others, there are…
-
9
votes5
answers38995
viewsHow to disable (stop, remove, delete) git versioning from a repository
I cloned a Github repository in my directory, but it came full of commits, ie versioned. I wanted to restart it as a repository, from scratch, as I do? I’ve tried the remote: git reset (didn’t work…
-
9
votes2
answers649
viewsWhen should I maintain 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 its completion, I merge with the master. What is…
-
8
votes1
answer2098
viewsHow do I use git to organize my development, approval, and production environment?
We are adopting the use of an 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 he wants…
-
7
votes1
answer731
viewsIncrementing the Assemblyversion
I am creating an upgrade solution for an application I have and needed the Assembly version When placing an * on Assembly. [assembly: AssemblyVersion("1.0.0.*")] it started incrementing…
-
7
votes1
answer7707
viewsVersion configuration options in Debug and Release mode in Delphi
In projects in Delphi, we have the options Debug and Release in Build Configurations. I know the way Debug is used to debug the application and generates a larger executable by adding reference…
-
7
votes1
answer308
viewsDeploy with GIT x Deploy with Gulp
I still can’t figure out which is the best deploy on a site. I explain how I’m doing: GIT I started a local repository I hosted my repository on some service like Github/Bitbucket I hacked into the…
-
7
votes1
answer5110
viewsWhat is Flyway and when to use it?
The system recently drew attention to this issue, and it talks about Flyway. So I’d like to know: what is Flyway? what problems he proposes to remedy? when to use it? what are the competing…
-
6
votes2
answers476
viewsVersioning scheme
In . NET, the assemblies generated have four version numbers. I’ve heard a lot about larger version and smaller version (major version and minor version), and that those would be the first two…
-
6
votes2
answers345
viewsSQL Server 2005 and line version control
In my current scenario, every Friday, I need to list all rows of a table that have been added or changed. In this table we have a field DataDeInclusao which obviously receives the date of inclusion…
-
6
votes1
answer829
viewsR workflow: strategies to organize a data analysis project
Based on this question from the SOEN, ask: What strategies do you recommend to organize a data analysis project on R? The project usually involves the following steps (not necessarily in that…
-
6
votes2
answers215
viewsWhat are Git mod sets really?
I’m starting now to use Git and one thing I heard in the course I’m looking at is this: what Git actually stores is not the different versions of the files, but rather sets of modifications. That…
-
6
votes2
answers459
viewsWhat does "Auto Packing the Repository for Optimum performance" mean?
I went to give git push in a remote repository and the following message appeared: Auto packing the repository for optimum performance. You may also run "git gc" manually. See "git help gc" for more…
-
6
votes1
answer482
viewsWhat are the suffixes of NPM versions and what do they do?
In Node.js environment when we fetch modules from NPM suffixes can be used to specify versions. For example, in the package.json I often see: "dependencies": { "async": "~1.4.2", "express":…
-
6
votes3
answers14615
viewsChange remote git repository
I am using an online tool to make version control of my repository git, would like to change the remote to use another reference. How to change the remote repository (origin) git?…
-
6
votes1
answer140
viewsWhat algorithm to use for a diff mechanism?
You know these mechanisms of Difference of content that we use in control of various versions, where can be seen on Wikipedia or on Github, even here on the site? Just as there are algorithms known…
-
5
votes2
answers16023
viewsHow to Update PHP Version on Wampserver?
Does anyone know how to upgrade the latest version of PHP to Wampserver?
-
5
votes1
answer162
viewsNumber of revisions per file saved via Git
I have a very specific need, I need to store at most 3 revisions of a PSD file, and every new revision the older one is deleted. You can do this in Git?
-
5
votes2
answers3408
viewsCreate trunk, branch and tag folders in Subversion in an existing repository
I have a project that is in a repository on Subversion, but the same NAY is inside the recommended folders: trunk, branch and tag. As if the folder the project is in is the trunk itself. I can…
-
5
votes2
answers509
viewsIs using version control on the production server a good practice?
In the company where I work today, we have a Web system (C# ASP.NET) where we use the Team Foundation Server 2013 in the development environment. On the production server we don’t use any version…
-
5
votes1
answer13715
viewsUndoing a pull in Git
I have a project and at the moment I have 3 branches, the master, one dev and one that I needed to create in parallel to the dev for a funcionalidade the part, so far no news, my problem was that…
-
5
votes3
answers1301
viewsMove folder/files between repositories without losing Change history
Context: I have a versioning environment in Mercurial using Tortoisehg for viewing and commits and files. I want to move a folder from one repository to another and without losing change history,…
-
5
votes1
answer1414
viewsREST API versioning. Is there a way to do it and what would be the best option?
Currently I develop integration Apis with services internal to our company and in the near future we will have the opportunity to provide some of our Apis to external partners. Suggest the idea of…
-
5
votes2
answers260
viewsHow to view front-end projects?
How to view front-end projects? Semantic versioning brings the following approaches: MAJOR - when you make incompatible API changes MINOR - when you add functionality compatible with previous…
-
5
votes2
answers377
viewsGIT: 2-verse project on different clients and main branch
I have a question regarding the organization of GIT. I have 1 project that will be divided into 2 verses for different clients, I would like to maintain a main branch and that the general changes…
-
4
votes4
answers1259
viewsGit merge between branches with submodules
I have a following mobile project. A repository where code is shared between several projects. I’ll call this repository. In the projects were created branchs of this base type because it was…
-
4
votes2
answers3360
viewsBest practices for creating and reviewing procedures
What is the best way to create, change and evaluate procedures? Where work we do of the following flow: We check if the trial exists if we delete it and then create again. To Verse I use a header…
-
4
votes2
answers2111
viewsI can’t install Ibgepesq in R to read the Pnads
I just downloaded the 2013 PNAD of IBGE -- and I tried to open it with the package for R that IBGE itself elaborated, the Ibgepesq. It is available as . zip archive at this address:…
-
4
votes3
answers517
viewsHow is the life cycle of an application until a release with Subversion is released?
I was about to ask a question like that: What "branch", "tag" and "trunk" really mean? I read and still have doubts about the practical operation of branches and tags. About the standard/recommended…