How does anyone use TFS?
-
It's usability is about the same as a jaw-less zombie. X| Marc
V.A.P.O.R.ware - Visual Assisted Programming / Organizational Representation Learning to code with python is like learning to swim with those little arm floaties. It gives you undeserved confidence and will eventually drown you. - DangerBunny Artificial intelligence is the only remedy for natural stupidity. - CDP1802
We use our own networked instance and its been fine. The only place I find it lacking is I'd like to be able to find in files without having to get latest.
-
It's usability is about the same as a jaw-less zombie. X| Marc
V.A.P.O.R.ware - Visual Assisted Programming / Organizational Representation Learning to code with python is like learning to swim with those little arm floaties. It gives you undeserved confidence and will eventually drown you. - DangerBunny Artificial intelligence is the only remedy for natural stupidity. - CDP1802
My previous employers used TFS Online. We could never find anything. I agree it's a mess, never got used to it. Now using JIRA. It took a little getting used to, but at least I can find stuff there now.
arrgh.js - Bringing LINQ to JavaScript Object-Oriented Programming in C# Succinctly Sander's bits - Writing the code you need
-
RyanDev wrote:
Works just fine for us
Besides the klunkiness of the UI, it also takes VS forever to load and to do any operation, like adding new files, committing, etc., probably because the whole thing has to go through a proxy that connects to a server on the company's internal network 3000 miles away. But why it even has to do that, as compared to, say, Git or SVN -- make your changes, review your changes, including new files, and commit. And I don't like integrated source control, I like to have options (meaning 3rd party separate apps) for exploring the repo, doing commits, merges, etc. Marc
V.A.P.O.R.ware - Visual Assisted Programming / Organizational Representation Learning to code with python is like learning to swim with those little arm floaties. It gives you undeserved confidence and will eventually drown you. - DangerBunny Artificial intelligence is the only remedy for natural stupidity. - CDP1802
My favourite "feature" is that deleting a file from the Solution Explorer then performing a checkin doesn't actually commit the delete; you have to open Team Explorer then check in there for the deletes to actually commit...crazy. This also causes complete havok with NuGet which attempts to delete a package that doesn't get deleted so it can't be replaced. I find I have to checkout the whole kit and kaboodle, manually delete the packages, check everything back in, in Team Explorer so packages actually get deleted, then checkout once more, then add the new packages then perform another check in. :wtf:
-
It's usability is about the same as a jaw-less zombie. X| Marc
V.A.P.O.R.ware - Visual Assisted Programming / Organizational Representation Learning to code with python is like learning to swim with those little arm floaties. It gives you undeserved confidence and will eventually drown you. - DangerBunny Artificial intelligence is the only remedy for natural stupidity. - CDP1802
TFS uses wrong terminology, as a result it always does something completely unexpected. If you have to use it (company decision) then employees must be properly trained at first place. If the company doesn't do the training prerequisite than the use of TFS is clunky and TFS functionality is limited. Finaly conclusion: run away of it unless your company is (big) Microsoft Partner (or something).
-
TFS uses wrong terminology, as a result it always does something completely unexpected. If you have to use it (company decision) then employees must be properly trained at first place. If the company doesn't do the training prerequisite than the use of TFS is clunky and TFS functionality is limited. Finaly conclusion: run away of it unless your company is (big) Microsoft Partner (or something).
Terminology is pretty simple: Check-out to start working on a file; check-in to send files that are checked out into the main repository; Rollback to undo a check-in; Undo to undo a check-out (revert changes). You have a command line, an integration with the file system or the visual studio integration (the best option, where things are pretty clear). It is much simpler than any other system, it's user interface in Visual Studio is very simple and straightforward - I teach it to newbies in 5 minutes.
-
:thumbsup:
-
It's usability is about the same as a jaw-less zombie. X| Marc
V.A.P.O.R.ware - Visual Assisted Programming / Organizational Representation Learning to code with python is like learning to swim with those little arm floaties. It gives you undeserved confidence and will eventually drown you. - DangerBunny Artificial intelligence is the only remedy for natural stupidity. - CDP1802
I use Subversion and have been using it for years with no problems. I agree with everyone else here. TFS is not very intuitive at all and no matter how long I used it I still couldn't remember that there were two separate interfaces to do various tasks.
Steve Naidamast Sr. Software Engineer Black Falcon Software, Inc. blackfalconsoftware@outlook.com
-
I setup TFS 2013-15 in our company, a complete switchover from our previous source control and bug tracking. We use local TFS, not TFS online. For source control everything is instantanous, and we're using TFVC not Git (which has a local repo). I think it's fantastic and the whole company loves it. Keep in mind we're all using Visual Studio 2015 so the integration is basically flawless.
same here TFS works great for us (using SCRUM) - also wrote some custom server-plugins and Tools - you can do a lot with the API - I like the "open" way of MS. But I can understand the critics about TeamExplorer UI in VS...
-
It's usability is about the same as a jaw-less zombie. X| Marc
V.A.P.O.R.ware - Visual Assisted Programming / Organizational Representation Learning to code with python is like learning to swim with those little arm floaties. It gives you undeserved confidence and will eventually drown you. - DangerBunny Artificial intelligence is the only remedy for natural stupidity. - CDP1802
I've been using it for the last two years and for the most part find it no worse or particularly better than the others. What I don't like is Microsoft changing the interface and there is no notice until after the fact when they get around to sending an email. What makes this worse is they don't keep the documentation current so you try to find out how to do something and the doc doesn't match.
-
My favourite "feature" is that deleting a file from the Solution Explorer then performing a checkin doesn't actually commit the delete; you have to open Team Explorer then check in there for the deletes to actually commit...crazy. This also causes complete havok with NuGet which attempts to delete a package that doesn't get deleted so it can't be replaced. I find I have to checkout the whole kit and kaboodle, manually delete the packages, check everything back in, in Team Explorer so packages actually get deleted, then checkout once more, then add the new packages then perform another check in. :wtf:
...and if you rename or move that file before deleting it the check in comes to a screeching halt because *gasp* the file isn't there anymore. TFS gets itself into more existential conundrums than a nihilist week-long retreat. I know MS. Clearly I'm not "holding it the right way".
-
It's usability is about the same as a jaw-less zombie. X| Marc
V.A.P.O.R.ware - Visual Assisted Programming / Organizational Representation Learning to code with python is like learning to swim with those little arm floaties. It gives you undeserved confidence and will eventually drown you. - DangerBunny Artificial intelligence is the only remedy for natural stupidity. - CDP1802
I kinda think the answer is, "poorly". We changed from TFS to git earlier this year. Sure, it takes a while to get used to the local and remote repos in git, but once you're past that, you no longer have the frustrating little "nuances" of TFS mentioned in many of the other replies.
-
It's usability is about the same as a jaw-less zombie. X| Marc
V.A.P.O.R.ware - Visual Assisted Programming / Organizational Representation Learning to code with python is like learning to swim with those little arm floaties. It gives you undeserved confidence and will eventually drown you. - DangerBunny Artificial intelligence is the only remedy for natural stupidity. - CDP1802
Have used it for years. Works fine.