Git: Unterschied zwischen den Versionen

Aus xinux.net
Zur Navigation springen Zur Suche springen
Zeile 27: Zeile 27:
 
*git status -s
 
*git status -s
 
  A  silly-prog.sh
 
  A  silly-prog.sh
 +
==commit and show log==
 +
*git commit -m 'Initial commit'
 +
[master (root-commit) 2790f58] Initial commit
 +
  1 file changed, 2 insertions(+)
 +
  create mode 100755 silly-prog.sh
 +
*git log
 +
commit 2790f58a6d84cf07eb3ff3774be9583d1c2834a5
 +
Author: Thomas Will <thomas.will@xinux.de>
 +
Date:  Wed Dec 20 16:20:44 2017 +0100
 +
 +
    Initial commit
  
 
=links=
 
=links=

Version vom 20. Dezember 2017, 15:21 Uhr

git server

create user and group

  • groupadd dev
  • useradd -G dev -d /home/gituser -m -s /bin/bash gituser
  • passwd gituser

mkdir and init empty git

  • mkdir project.git
  • cd project.git/
  • git --bare init

git client

copy id_rsa.pub to the git server

  • ssh-copy-id gituser@git-server:

create own project directory

  • mkdir my-project
  • cd my-project/

git init and show status

  • git init
  • git status -s

create a new file

  • echo -e '#!/bin/bash\necho hallo welt' > silly-prog.sh
  • chmod +x silly-prog.sh

show status again

  • git status -s
?? silly-prog.sh

add the whole folder

  • git add .
  • git status -s
A  silly-prog.sh

commit and show log

  • git commit -m 'Initial commit'
[master (root-commit) 2790f58] Initial commit
 1 file changed, 2 insertions(+)
 create mode 100755 silly-prog.sh
  • git log
commit 2790f58a6d84cf07eb3ff3774be9583d1c2834a5
Author: Thomas Will <thomas.will@xinux.de>
Date:   Wed Dec 20 16:20:44 2017 +0100

    Initial commit

links