Git: Unterschied zwischen den Versionen

Aus UUGRN
(draaaaft!)
 
(.gitconfig eingebaut)
Zeile 1: Zeile 1:
 
[[git]] ist ein verteiltes Versionskontrollsystem.
 
[[git]] ist ein verteiltes Versionskontrollsystem.
 +
 +
Eine beispielhafte <code>~/.gitconfig</code> könnte in etwa so aussehen:
 +
<pre>
 +
[user]
 +
  name = Desmond Hume
 +
  email = d.hume@dharma.org
 +
 +
[color]
 +
  diff = auto
 +
  status = auto
 +
  branch = auto
 +
  interactive = auto
 +
  pager = true
 +
 +
[github]
 +
  user = dhume
 +
  token = asdfjklö1234567890
 +
 +
[core]
 +
  pager = less -FRSX
 +
  whitespace=fix,-indent-with-non-tab,trailing-space,cr-at-eol
 +
 +
[pager]
 +
  color = true</pre>

Version vom 20. Dezember 2009, 10:08 Uhr

git ist ein verteiltes Versionskontrollsystem.

Eine beispielhafte ~/.gitconfig könnte in etwa so aussehen:

[user]
   name = Desmond Hume
   email = d.hume@dharma.org

[color]
   diff = auto
   status = auto
   branch = auto
   interactive = auto
   pager = true

[github]
   user = dhume
   token = asdfjklö1234567890

[core]
   pager = less -FRSX
   whitespace=fix,-indent-with-non-tab,trailing-space,cr-at-eol

[pager]
   color = true