Changes between Initial Version and Version 1 of GitInfo


Ignore:
Timestamp:
11/21/11 13:56:24 (12 years ago)
Author:
admin
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • GitInfo

    v1 v1  
     1== Git ==
     2
     3== samle client session ==
     4git > 1.7.1 required !!!!!!!!!
     5{{{
     6export GIT_SSL_NO_VERIFY=true
     7
     8git clone https://svn.version.fz-juelich.de/gittest
     9echo "hier on client" > testclient.txt
     10git add testclient.txt
     11git commit -m "commit on client"
     12git log
     13git log origin
     14git push origin master # 1st time
     15git push origin # further
     16}}}