Checking…
$ git status
# On branch master
#
# Initial commit
#
nothing to commit (create/copy files
and use "git add" to track)
Working…
$ touch hello_nrwconf.txt
$ git status
# On branch master
#
# Initial commit
#
# Untracked files:
# (use "git add <file>..." to include in what will be
committed)
#
# hello_nrwconf.txt
nothing added to commit but untracked files present (use
"git add" to track)
Dateien unter Source Control bringen
$ git add --all
oder:
$ git add hello_nrwconf.txt
Dateien unter Source Control bringen
$ git status
# On branch master
#
# Initial commit
#
# Changes to be committed:
# (use "git rm --cached <file>..." to
# unstage)
#
# new file: hello_nrwconf.txt
Git Server
Windows File Share
git clone //server/repository.git
SSH-Server mit Public Key-Authentifizierung
und granularen Benutzerberechtigungen
http://bit.ly/oZbhtt
git clone git@server:repository.git