Difference between revisions of "IT-SDK-Git"

From wiki.samerhijazi.net
Jump to navigation Jump to search
Line 1: Line 1:
<nowiki>
+
# Style for bash scripts: pre tags with class "bash"
 +
pre.bash {
 +
background-color: black;
 +
color: grey;
 +
font-family: Consolas,Monaco,Lucida Console,Liberation Mono,DejaVu Sans Mono,Bitstream Vera Sans Mono,Courier New, monospace;
 +
}
 +
 
 +
<pre class="bash">
 
type %userprofile%\.ssh\id_rsa.pub | clip
 
type %userprofile%\.ssh\id_rsa.pub | clip
 
cat %userprofile%\.ssh\id_rsa.pub | clip
 
cat %userprofile%\.ssh\id_rsa.pub | clip
Line 6: Line 13:
 
git config --global user.email "Samer.Hijazi.Extern@fiduciagad.de"
 
git config --global user.email "Samer.Hijazi.Extern@fiduciagad.de"
 
git config --global credential.helper wincred
 
git config --global credential.helper wincred
</nowiki>
+
</pre>

Revision as of 14:27, 18 April 2019

  1. Style for bash scripts: pre tags with class "bash"

pre.bash {

background-color: black;
color: grey;
font-family: Consolas,Monaco,Lucida Console,Liberation Mono,DejaVu Sans Mono,Bitstream Vera Sans Mono,Courier New, monospace;

}

type %userprofile%\.ssh\id_rsa.pub | clip
cat %userprofile%\.ssh\id_rsa.pub | clip

git config --global user.name "Samer Hijazi"
git config --global user.email "Samer.Hijazi.Extern@fiduciagad.de"
git config --global credential.helper wincred