Changes for page Frequently Asked Questions
Last modified by Boris Folgmann on 2026/06/09 11:25
To version 4.1
edited by Boris Folgmann
on 2026/06/09 11:25
on 2026/06/09 11:25
Change comment:
There is no comment for this version
Summary
-
Page properties (2 modified, 0 added, 0 removed)
Details
- Page properties
-
- Author
-
... ... @@ -1,1 +1,1 @@ 1 -xwiki:XWiki.s dcloud-admin-01 +xwiki:XWiki.borisfolgmannt-systemscom - Content
-
... ... @@ -30,15 +30,15 @@ 30 30 31 31 (% style="color:#172b4d" %)After a few failed login attempts, your account will be locked and you have to wait for a certain period of time to be able to login again. 32 32 33 -(% style="color:#172b4d" %) Another reasonforalockedaccountmight bethat thePortal Administratoractivelylockedyour user account.33 +(% style="color:#172b4d" %)Please ask the Portal Administrator to lock and then unlock your user. Usually this can solve the problem (and you don't have to wait, you can login instantly after this procedure). 34 34 35 -(% style="color:#172b4d" %) Please askthePortalAdministratortolockandthen unlockyour user.Usually thiscan solvetheproblem(and you don'thavetowait,you canlogininstantly afterthis procedure). Youcanreadmore about the userstatusesonthe [[Userstatuses inDevOps Portal>>doc:DevOps Portal for Admins.User statuses in DevOps Portal.WebHome]] page.35 +(% style="color:#172b4d" %)Another reason for a locked account might be that the Portal Administrator locked your user account on purpose. 36 36 37 37 === (% style="color:#172b4d" %)What does a specific role mean?(%%) === 38 38 39 39 Each user who is a member of a project has to be in exactly one Project Role. Therefore it is not possible to have no or multiple roles in a project. 40 40 41 -Different roles have different sets of permissions, a role can be //Admin, Developer, Master, Viewer.// You can read more about a specific role on the [[Users and roles>>doc: DevOps Portal for Admins.Users and roles.WebHome]] page.41 +Different roles have different sets of permissions, a role can be //Admin, Developer, Master, Viewer.// You can read more about a specific role on the [[Users and roles>>doc:Users and roles.WebHome]] page. 42 42 43 43 === (% style="color:#262626" %)What is the role of Organizations in the DevOps Portal?(%%) === 44 44 ... ... @@ -121,27 +121,24 @@ 121 121 122 122 === (% style="color:#172b4d" %)Cloning a project does not work. Why do I get an "fatal: unable to access ... Could not resolve host" error from Bitbucket?(%%) === 123 123 124 -(% style="letter-spacing:-0.006em" %)Mostly, this is due to a missing proxy configuration in your Git client. The following example uses git bash to configure the proxy .124 +(% style="letter-spacing:-0.006em" %)Mostly, this is due to a missing proxy configuration in your Git client. The following example uses git bash to configure the proxy of your company. 125 125 126 -sdfsdfsdf 127 - 128 128 1. Order or install git bash. You can install it yourself from [[https:~~/~~/git-scm.com/downloads>>https://git-scm.com/downloads]] 129 129 1. ((( 130 -After installation start git bash and use the secommands to configure git:128 +After installation, start git bash and use the following commands to configure git. (% style="letter-spacing:-0.006em" %)You have to replace (%%)PROXY_NAME and PROXY_PORT by the correct values to make it work. 131 131 132 132 {{code}} 133 -git config --global user.name "JohnDoe"134 -git config --global user.email johndoe@example.com 131 +git config --global user.name john.doe@example.com # Jenkins will use this field to map commits to your user identified by your email address 132 +git config --global user.email john.doe@example.com # Bitbucket will use this field to map commits to your user identified by your email address 135 135 # Use the following only if you do not use any Intranet Git repos: 136 -# git config --global http.proxy http:// sia-lb.telekom.de:8080/134 +# git config --global http.proxy http://PROXY_NAME:PROXY_PORT/ 137 137 # This one is better, you can specify the domain "devops.t-systems.net" you want to use the proxy for: 138 -git config --global http.https://devops.t-systems.net.proxy http:// sia-lb.telekom.de:8080136 +git config --global http.https://devops.t-systems.net.proxy http://PROXY_NAME:PROXY_PORT 139 139 {{/code}} 140 140 141 -This config will be automatically saved toyour user's//.gitconfig//.Incaseyou use adifferentproxyto accessDevOps-as-a-ServicehostedBitBucket projects, use that in the statements aboveinsteadof`sia-lb.telekom.de:8080`139 +This global git config will be automatically saved to the file //.gitconfig// located in the home directory of your user. 142 142 ))) 143 -1. Older git versions might show TLS errors when connecting to HTTPS servers. Then only a more recent git bash will help. 144 -1. (% id="cke_bm_750982S" style="display:none" %) (%%)On some notebooks, Windows saves the global .gitconfig to the network drive. Switch it offline if you would not lose your .gitconfig from time to time ... 145 -1. Best solution to let git use a global config on your local drive is to set the env var {{code language="none"}}XDG_CONFIG_HOME{{/code}} since git will use the file {{code language="none"}}$XDG_CONFIG_HOME/git/config{{/code}} instead if the envvar is set. See [[https:~~/~~/git-scm.com/docs/git-config>>url:https://git-scm.com/docs/git-config||rel="nofollow" shape="rect" style="text-decoration: none;" class="external-link"]] 141 +1. You can set the env var {{code language="none"}}XDG_CONFIG_HOME{{/code}} if you want to have the config placed in another folder. When this env var is set, git will use the file {{code language="none"}}$XDG_CONFIG_HOME/git/config{{/code}}. 142 +See [[https:~~/~~/git-scm.com/docs/git-config>>url:https://git-scm.com/docs/git-config||rel="nofollow" shape="rect" style="text-decoration: none;" class="external-link"]] 146 146 147 147