Check Out a Codebeamer Repository and Do a Commit
Create a new Codebeamer project with a Managed Mercurial Repository named svntest. Follow the steps described in Creating Managed Repositories.
Create a new issue in the Bugs tracker of the new project. This example assumes that the new issue gets the ID 1000 and the project was created by the account bond that has the password 007.
* 
It is strongly NOT recommended using user/password in URL.
On Linux/Unix hg must be in yourPATH, on Windows add Mercurial to thePATH with the command below:
set PATH="C:\Dokumente und Einstellungen\zk\Eigene Dateien\CB\libexec\svn";%PATH%
Checking out from the repository:
svn checkout http://bond:007@localhost/svn/svntest
Adding a new file to the repository
cd svntest
echo hello > readme.txt
svn add readme.txt
Committing to a Codebeamer issue
svn commit -m "#1000 just a commit"
Once the browser is refreshed, the change set should appear under SCM Commits tab.
Was this helpful?