$ git clone git://10.10.0.5/example.git
Cloning into example...
remote: Counting objects: 5, done.
remote: Compressing objects: 100% (4/4), done.
remote: Total 5 (delta 1), reused 0 (delta 0)
Receiving objects: 100% (5/5), done.
Resolving deltas: 100% (1/1), done.
neo@neo-OptiPlex-380:~/tmp$ cd example/
neo@neo-OptiPlex-380:~/tmp/example$ git status
# On branch master
nothing to commit (working directory clean)
neo@neo-OptiPlex-380:~/tmp/example$ ls
test1 test2 test3 test4
neo@neo-OptiPlex-380:~/tmp/example$ echo hello > test1
neo@neo-OptiPlex-380:~/tmp/example$ git status
# On branch master
# Changes not staged for commit:
# (use "git add <file>..." to update what will be committed)
# (use "git checkout -- <file>..." to discard changes in working directory)
#
# modified: test1
#
no changes added to commit (use "git add" and/or "git commit -a")