1

I need to stash some changes in Rational Team Concert, but have not found a way to do so.

Is there anything like git stash in Rational Team Concert?

ps: It was easier to ask a simple question in SO.

lsborg
  • 1,191
  • 1
  • 12
  • 17

1 Answers1

2

Do you have the RTC command line client installed, or just the Eclipse client? You need one of the two.

Here is the documentation for the CLI: https://www.ibm.com/developerworks/rational/library/rational-team-concert-command-line-reference/index.html

Git Stash is similar to Suspend a change set in RTC:

changeset suspend
Kenny
  • 316
  • 1
  • 9
  • I use the eclipse client, but may also use the command line. I tested it before. – lsborg Sep 26 '18 at 15:52
  • For the Eclipse client, as long as you have loaded a repository workspace (which is your local sandbox on your computer), you can do a check in. That copies changes to the server from your local disk. Then, you can **Suspend** the change set. That saves it for later, just like a git stash. – Kenny Sep 26 '18 at 15:59
  • And the `changeset resume` is similar to a `git stash apply`, right? – lsborg Sep 27 '18 at 16:07
  • Yes, changeset resume is just like git stash apply. – Kenny Oct 01 '18 at 14:34