checkin

What does ***NO_CI*** stand for?

两盒软妹~` 提交于 2019-11-27 20:20:57
A gated check-in will create a change-set whose name is ended with ***NO_CI***? What is that NO_CI stand for? I can just think of "no check in errors" but it doesn't make sense. It stands for No Continuous Integration . Since the check-in is gated, the existing code, plus this check-in, will be built separately and only allowed onwards if the build is successful. So when the gating process actually submits it to source control, there wouldn't be any point for that check-in to cause another (continuous integration) build to occur, since at that point thechangeset is 'known good'. So this suffix

Disadvantages of a gated check-in in TFS

最后都变了- 提交于 2019-11-27 14:18:33
I've always worked with the Continuous Integration (CI) build in TFS. However, in my last project we started to use the gated check-in trigger. Are there any disadvantages when using a gated check-in? Because if it prevents the team from checking in broken code, what's the purpose of a CI trigger? Gated checkin is a form of continuous integration build. In TFS, it creates a shelveset containing the code that's being validated, then runs a build of that code. Only if that code builds successfully and all configured unit tests pass does the code actually get committed. Continuous integration is

How do I undo a checkin in ClearCase remote client

天涯浪子 提交于 2019-11-26 22:06:15
问题 I am using ClearCase remote client Version 7.1.1, and I am wondering if it's possible to delete a version that was checked in by mistake. I know that in ClearCase, this is possible by choosing delete in the right click menu (Versions tree) Anyone has the answer ? Thanks 回答1: Argh! rmver (see man page)? I would strongly advice against such an operation which cannot be undone (as I mention and detail in here, here or there). And rmver is not possible in a CCRC client (even in the latest 7.1.2).

Facebook FQL: Get checkins within range

对着背影说爱祢 提交于 2019-11-26 21:41:08
问题 Is there a way to use FQL to select all my friends Checkins that are in range of a specified location? I can use FQL to return my friends checkin coords: https://api.facebook.com/method/fql.query?access_token={0}&query=SELECT coords FROM checkin WHERE author_uid IN (SELECT uid2 FROM friend WHERE uid1 = me()) but how can I add to the above query to do something like... Where coords Within 10 miles of [(New York City, NY) | (long, lat) | (user.current_location)] Any help would be greatly

Disadvantages of a gated check-in in TFS

假如想象 提交于 2019-11-26 16:39:59
问题 I've always worked with the Continuous Integration (CI) build in TFS. However, in my last project we started to use the gated check-in trigger. Are there any disadvantages when using a gated check-in? Because if it prevents the team from checking in broken code, what's the purpose of a CI trigger? 回答1: Gated checkin is a form of continuous integration build. In TFS, it creates a shelveset containing the code that's being validated, then runs a build of that code. Only if that code builds