Posts by egomesbrandao • 2,026 points
85 posts
-
1
votes1
answer228
viewsA: Visual Studio 2017 + TFS - Performance Issues
Merges always occur on the client machine, usually those who use TFVC are using Visual Studio for this. The process you refer to looks more like uploading code to the server, i.e., check-in. In…
-
0
votes3
answers856
viewsA: How to copy a local git repository?
A Git repository is based on source files, or any other type, plus a hidden folder . git, as is a DVCS, Each repository has not only the data (code) but the history information, it is in this hidden…
gitanswered egomesbrandao 2,026 -
2
votes1
answer336
viewsA: TFS Automatically Merge Without Checking Conflicts
There is no automatic merge in any merge tool. Because it is the developer who should make the decision of which code should be versioned. So if you changed a code and checked in, there was no…
-
3
votes1
answer687
viewsA: Git, upload code directly to the server
No! Using a branch for each environment is not the best alternative, it’s called code promotion; and that technique is no longer used. The idea is to promote binaries or artifacts generated in a…
-
3
votes1
answer83
viewsA: Where is the source folder on the server? Team Foundation Server
All sources, build settings, release settings, artifacts (work items) are in the SQL Server, nothing stays in folders. This is a TFS Feature, having everything in a database, integrated and backed…
team-foundation-serveranswered egomesbrandao 2,026 -
2
votes1
answer363
viewsA: How to transfer a Workspace TFS to another user
In TFVC, this is exactly how code is shared between developers! To do this, follow the steps: The first developer makes a shelve normally. Then the second developer will access in Team Explorer, and…
-
2
votes1
answer19
viewsA: Profiling deposited in the Versioning Repository (Github)
Delfino, As a rule, it is not normal for you to put collected data from a build, for example, or from test results; in version control. Usually this type of data enters a OLAP database, or as input…
-
2
votes1
answer116
viewsA: Git does not ignore certain subdirectories
Git controls files, not folders! You can test this by creating an empty folder and using Command: git add * You will see that it does not add the folder to staging. Git works with pointers to files.…
gitanswered egomesbrandao 2,026 -
3
votes1
answer972
viewsA: How to handle database working with Docker?
It makes no sense to have the BD image, what you will have will be the BD service, not the bank itself! You should have the database on a file system Ocker, and you should do regular backups from…
-
1
votes2
answers184
viewsA: Doubt about having control TFS version
Work Items are not for source code management but for requirements management. Team Foundation Server (TFS) is a very complete ALM tool, it is not only a source code versioner, but also includes…
-
1
votes1
answer1236
viewsA: Git crashing in windows
See Control Panel > Programs > Uninstall a program, if Git is not installed. If you are removing. On Windows I always do the installation via Chocolatey, it’s like the Debian package installer…
-
2
votes2
answers1030
viewsA: How do NPM always update the latest Comite in master?
Bruno, it’s good practice not to say this in Git, when a dev does the clone it downloads the packages and when it does, you have to put this process in the "build" automation Gulp can help you…
-
1
votes1
answer31
viewsA: SVN externals in Git. Is there?
The best practice is: publish this external part, dll, lib, framework, etc..., somewhere and use the "compiled" in quotation marks because it is not necessarily a compiled object; in its code. For…
-
2
votes2
answers164
viewsA: How do I save software versioning with GIT?
For backup you only compress the entire repository folder, not just the . git, then you can restore, or unzip the backup, and quit using. You can also put it in Dropbox, if you have a folder synced…
-
3
votes2
answers125
viewsA: Is there a workflow in git that determines file access and blocking?
No, because Git is a DVCS. That is, the user will always have a copy of the repository, which is disconnected from any server, so it would not be possible to control local file access policies.…
-
0
votes1
answer184
viewsA: TFS and Source Tree
Git is accessible through Team Explorer in Visual Studio. It is installed by default, and initially stays in the same group of tabs with Explorer. There are necessary tools that must be installed…
team-foundation-serveranswered egomesbrandao 2,026 -
0
votes2
answers208
viewsA: Email Alert - TFS Visual Studio
It is also possible to do through the TFS Web Portal.…
-
4
votes2
answers2200
viewsA: What is the difference between SVN and TFS?
TFS, Team Foundation Server, is an Application Lifecycle Management platform. Platform because its architecture is distributed, so in the simplest configuration it is possible to have a single…
-
0
votes2
answers60
viewsA: Integration of TSF with Android Studio
The integration exists, you won’t have all the features in the IDE, but you can use the Web Portal, i.e., Web interface. Code I don’t know Android Studio, however, I know that it is natively…
-
0
votes3
answers477
viewsA: How to use GIT connected to the server?
Using Git on the production server is not a good practice! As @guiandmag wrote you should implement a deployment process. Since it is not your source that should go to production but binary or final…
-
0
votes2
answers275
viewsA: Avoid pushing a specific branch to the wrong remote
If you use Git with Windows there is a very interesting Powershell extension called Posh-git, you can download it via Chocolatey here. This extension shows the current branch name at the prompt,…
gitanswered egomesbrandao 2,026 -
0
votes1
answer55
viewsA: Is it possible to share the auto name Count information in TFS?
Do you want to see the EA document and the number vary according to what in the TFS? The changeset? What I understand about this process is: you have a document that will be versioned in TFS, I do…
-
1
votes1
answer1305
viewsA: How to set up Github in Visual Studio 2013 (Share project on Local network)
Github is a hosting service, you will not set it up in Visual Studio! What you have to do is clone the repository and then push to Github. Click Connect to Team Projects Click on Clone Follow the…
-
1
votes5
answers838
viewsA: Is it possible to integrate GIT with some task manager?
It is also possible to integrate with https://www.visualstudio.com/, that has Agile Tools, Build, Test, ... is FREE for an account of up to 5 users.…
-
6
votes2
answers509
viewsA: Is using version control on the production server a good practice?
As Luiz Vieira put it well, you already have history and version control, in your production environment you are not running code, you are running binaries. TFS must be unique, its version control…
-
5
votes4
answers15428
viewsA: How do I remove local files(untracked files) from my current branch(branch) in Git?
You need to mark a file for deletion with the command below git rm <file> Running the command below checks that the file is marked as Deleted: git status Now just effect the removal by…
gitanswered egomesbrandao 2,026 -
2
votes1
answer53
viewsA: Error 04018 when trying to build an SQL database project
Is a bug product! To solve it just do the update, if you are with the update re-install. The download is on this page(Microsoft SQL Server Data Tools). If his build machine no internet access, use…
-
2
votes1
answer53
viewsQ: Error 04018 when trying to build an SQL database project
I created my database project on Visual Studio 2013 pointing to an existing base, I put a new build for TFS execution and the following error occurs: Error 04018: The “SqlBuildTask” task failed…
-
1
votes1
answer330
viewsA: Why When do I Check in on TFS my DLL does not go up?
If you are checking in through Visual Studio or Explorer (you must have Power Tools installed), as dll s will not be included automatically Versionar dll s in version control is a good practice,…
team-foundation-serveranswered egomesbrandao 2,026 -
1
votes1
answer66
viewsA: TFS integration with Dreamweaver
Yes, it does! Only you will not have native integration with the software, so you will have to use per command line or install Power Tools and use the integration with Windows Explorer, which…
-
2
votes1
answer150
viewsA: TFS daylight saving time
This is a problem known since last year and involves database... Maybe that’s why it happened again and I do not know if it has solution. But there is a workaround to solve: daylight saving time…
team-foundation-serveranswered egomesbrandao 2,026 -
2
votes2
answers628
viewsA: How to lock on to TFS?
You want to work like Visual Source Safe, not allow someone to check out the file while editing, it’s possible, but it’s not good practice, as it causes workflow crashes. But if for your environment…
team-foundation-serveranswered egomesbrandao 2,026 -
4
votes1
answer208
viewsA: How do I get back check in that I did on the TFVC?
If your code is in TFVC, there was previously a Rollback feature in Team Foundation Power Tools, it was moved to TF.exe! To use: tf rollback /changeset:changesetfrom~changesetto [itemspec]…
team-foundation-serveranswered egomesbrandao 2,026 -
4
votes2
answers246
viewsA: How do I create a Team Project by branch from the code of another Team Project in TFS 2013?
Using the Team Foundation Power Tools, In addition to the option not to create a folder for source code attached to the Team Project, which was never available in Wizard, it gives you the option to…
team-foundation-serveranswered egomesbrandao 2,026 -
3
votes2
answers246
viewsQ: How do I create a Team Project by branch from the code of another Team Project in TFS 2013?
Until the 2012 version of TFS it was possible to create a new Team Project, starting the code repository by branch another Team Project, figure below, but this option is no longer available in TFS…
team-foundation-serverasked egomesbrandao 2,026