more than a name, an inspiration
Über k-blue
Neuigkeiten
Der Name
Schreiben Sie uns
Anfahrt
Telefonisch erreichbar
Disclaimer
Cookie
Aktuelles
Online News
Heise News
Börse & Baugeld
Services
Weitere Links
Remote Support
Google PageRank
The Jargon File
Mozille Extensions
Eclipse Extensions
Linux-Befehle
git - content tracker
Radio Links
Specialities (
login
)
Hotspots
Benutzer Account
Movies
Wunschliste
Games
Karten Leeheim
WebCams (
login
)
k-blue
Kondor
Darmstadtium
Administration
Artikelverwaltung
Archive
Neuigkeiten Archive
Direkte Links
Unwetterzentrale
popular URLs
wikileaks
Reitanlage Schaad
Cherno Jobatey
Europa
September 2010
Mo
Di
Mi
Do
Fr
Sa
So
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
Benutzername
Passwort
RSS-Feed
Powered by
Apache
,
PHP
©
Andreas Kruemmel
2008.
All Rights Reserved.
git Samples and Commands
Git User's Manual (for version 1.5.3 or newer)
Getting Started with Git and GitHub on Windows
msysGit
git - Chapter 2. Basic Tricks
An introduction to git-svn for Subversion/SVK users and deserters
Eclipse Git plugin installation
Setting up a git repository which can be pushed into and pulled from over HTTP(S)
Git for the lazy
git home
Git - SVN Crash Course
GitWiki
Setup global Information
git config --global user.name Max Mustermann
git config --global user.email max.mustermann@e-mail.com
git config --global color.diff auto
git config --global color.status auto
git config --global color.branch auto
git config --global core.symlinks false
git config --global core.autocrlf true
git config --global pack.packsizelimit 2g
git config --global help.format html
git config --global remote.server.url ssh://yourserver.com/swd/source/git
git config --global remote.server.push master
Clone a Repository
git clone foo.com:/pub/repo.git/ my-project
or
git clone x:\path1\path2\git\repo.git my-project
Create git Repository
git init
Initialize shared SMB drive Repository
x:
md \path1\path2\git\%1
cd \path1\path2\git\%1
git --bare init --shared
git --bare fetch d:\path1\path2\%2 master:master
Show statistics
git log --stat --summary
Commit all changes
git commit -a