Last modified by Boris Folgmann on 2026/06/09 11:25

From version 2.1
edited by Boris Folgmann
on 2026/01/19 11:01
Change comment: There is no comment for this version
To version 3.2
edited by Boris Folgmann
on 2026/05/20 12:43
Change comment: Renamed back-links.

Summary

Details

Page properties
Content
... ... @@ -38,7 +38,7 @@
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  
... ... @@ -128,8 +128,8 @@
128 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.
129 129  
130 130  {{code}}
131 -git config --global user.name "John Doe"
132 -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
133 133  # Use the following only if you do not use any Intranet Git repos:
134 134  # git config --global http.proxy http://PROXY_NAME:PROXY_PORT/
135 135  # This one is better, you can specify the domain "devops.t-systems.net" you want to use the proxy for:
... ... @@ -138,6 +138,7 @@
138 138  
139 139  This global git config will be automatically saved to the file //.gitconfig// located in the home directory of your user.
140 140  )))
141 -1. You can set the env var {{code language="none"}}XDG_CONFIG_HOME{{/code}} if you want to have the config places in another folder. When this env var is set, git will use the file {{code language="none"}}$XDG_CONFIG_HOME/git/config{{/code}}. 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"]]
142 142  
143 143