151

I have just switched to VS2012 and being unfamiliar with it, checked in some major changes without a comment. No other updates have been done since then and no other developers will have access to the code for another few hours.

Is there a way to add a comment to this changeset now thaht it has been checked in?

Raheel Khan
  • 14,205
  • 13
  • 80
  • 168

1 Answers1

288

One relatively simple way to do this is:

  • find an appropriate point in your source tree in the Source Explorer window, maybe the root of the branch but you can also drill down a bit
  • ...or, if you know a specific file that was included in the changeset then find it and select it (can be done from the Solution Explorer panel)
  • right click, select View History (Source Explorer) or Source Control -> View History (Solution Explorer)

enter image description here

  • find the specific change you are interested in, then right click, select Changeset details

enter image description here

  • edit the comment, hit the Save link above the comment textbox

enter image description here

  • refresh the history view to see the updated comment

enter image description here

To do this via the web interface:

  • navigate your browser to your TFS web portal (if you are using TFS Online then it will be [your account name].visualstudio.com)
  • from you Home portal navigate to your project (if it isn't available under Recent projects and teams then click the Browse link under that heading)
  • click the CODE link at the top of the page
  • you should be in the Explorer tab under your project, in the tree view navigate and select the specific branch you are interested in
  • click the Changesets link at the top of the page to bring up the changesets for that branch. Use the Advanced Search towards the top right of that panel if you need to.
  • Click on the Changeset [number] link for the changset you are interested in
  • Above the changeset details panel click on the little speech bubble with the plus sign, a textbox will appear and you can enter your comment - hitting Enter will save the comment.

Note that it is possible to create a series of comments via this method, which is not possible via the desktop UI. Also note that the web entered comments will only show up in the web interface, any comment you add via the desktop UI will replace the default Changeset [number] link that shows up in the web interface.

Tim Abell
  • 11,186
  • 8
  • 79
  • 110
slugster
  • 49,403
  • 14
  • 95
  • 145
  • Thank you! It's the View History option I had been missing. – Raheel Khan Jun 22 '13 at 03:40
  • 1
    lol, was looking right at it, just did not occur to me i could change it – workabyte May 02 '14 at 20:52
  • 1
    so why isnt this possible via the TFS project page? – Christopher Townsend Sep 15 '14 at 13:52
  • 4
    That doesn't really change the changeset comment, it only adds a comment that is visible when you look at the changeset detail. – Stephane Mathis Jan 28 '16 at 16:32
  • @StephaneMathis this is what is available to you as an end user. I suspect you mean that the *web* interface doesn't change the changeset comment; I guess you'll have to learn to love it because the desktop interface is slowly being deprecated or superceded by the web interface. – slugster Jan 28 '16 at 22:12
  • 1
    I believe you can only edit your own comments unless you have admin privileges on TFS. – Tim Abell Apr 14 '16 at 09:09
  • 2
    I have admin privileges on TFS Online, and I can't edit my own check-in comments via the web interface, I can only add more comments. Very annoying if the check-in comment contains a misleading typo or something like that. An extra comment just isn't the same as fixing the source of the misunderstanding that might happen because of the typo. - I CAN edit the check-in comment via Visual Studio though. – Gertsen Jun 02 '16 at 08:23
  • 1
    Editing the changeset name via "Team Explorer" window helped and I could see it in the web UI changeset history too. Thanks. – Sreekanth Apr 02 '20 at 08:09
  • i was able to change my own comment after check-in, but it's worth mentioning that Save buttons is disable by default and becomes enabled only when the comment text has been modified. – Vitaly Leskiv Apr 25 '23 at 15:45