<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="de">
	<id>https://wiki.ixheim.de/index.php?action=history&amp;feed=atom&amp;title=Git_client_config</id>
	<title>Git client config - Versionsgeschichte</title>
	<link rel="self" type="application/atom+xml" href="https://wiki.ixheim.de/index.php?action=history&amp;feed=atom&amp;title=Git_client_config"/>
	<link rel="alternate" type="text/html" href="https://wiki.ixheim.de/index.php?title=Git_client_config&amp;action=history"/>
	<updated>2026-06-29T13:39:50Z</updated>
	<subtitle>Versionsgeschichte dieser Seite in Xinux Wiki</subtitle>
	<generator>MediaWiki 1.35.1</generator>
	<entry>
		<id>https://wiki.ixheim.de/index.php?title=Git_client_config&amp;diff=16741&amp;oldid=prev</id>
		<title>Thomas.will: Die Seite wurde neu angelegt: „  =git client= ==copy id_rsa.pub to the git server== *ssh-copy-id git@git-server:  ==create own project directory== *mkdir my-project *cd my-project/ ==git ini…“</title>
		<link rel="alternate" type="text/html" href="https://wiki.ixheim.de/index.php?title=Git_client_config&amp;diff=16741&amp;oldid=prev"/>
		<updated>2018-03-06T15:09:05Z</updated>

		<summary type="html">&lt;p&gt;Die Seite wurde neu angelegt: „  =git client= ==copy id_rsa.pub to the git server== *ssh-copy-id git@git-server:  ==create own project directory== *mkdir my-project *cd my-project/ ==git ini…“&lt;/p&gt;
&lt;p&gt;&lt;b&gt;Neue Seite&lt;/b&gt;&lt;/p&gt;&lt;div&gt;&lt;br /&gt;
&lt;br /&gt;
=git client=&lt;br /&gt;
==copy id_rsa.pub to the git server==&lt;br /&gt;
*ssh-copy-id git@git-server:&lt;br /&gt;
&lt;br /&gt;
==create own project directory==&lt;br /&gt;
*mkdir my-project&lt;br /&gt;
*cd my-project/&lt;br /&gt;
==git init and show status==&lt;br /&gt;
*git init&lt;br /&gt;
*git status -s&lt;br /&gt;
==create a new file==&lt;br /&gt;
*echo -e '#!/bin/bash\necho hallo welt' &amp;gt; silly-prog.sh&lt;br /&gt;
*chmod +x silly-prog.sh&lt;br /&gt;
==show status again==&lt;br /&gt;
*git status -s&lt;br /&gt;
 ?? silly-prog.sh&lt;br /&gt;
==add the whole folder==&lt;br /&gt;
*git add .&lt;br /&gt;
*git status -s&lt;br /&gt;
 A  silly-prog.sh&lt;br /&gt;
==commit and show log==&lt;br /&gt;
*git commit -m 'Initial commit'&lt;br /&gt;
 [master (root-commit) 2790f58] Initial commit&lt;br /&gt;
  1 file changed, 2 insertions(+)&lt;br /&gt;
  create mode 100755 silly-prog.sh&lt;br /&gt;
*git log&lt;br /&gt;
 commit 2790f58a6d84cf07eb3ff3774be9583d1c2834a5&lt;br /&gt;
 Author: Thomas Will &amp;lt;thomas.will@xinux.de&amp;gt;&lt;br /&gt;
 Date:   Wed Dec 20 16:20:44 2017 +0100&lt;br /&gt;
 &lt;br /&gt;
     Initial commit&lt;br /&gt;
==set the git server (to do only once)==&lt;br /&gt;
*git remote add origin git@git-server:project.git&lt;br /&gt;
==push to the master==&lt;br /&gt;
*git push origin master&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
Counting objects: 3, done.&lt;br /&gt;
Writing objects: 100% (3/3), 250 bytes | 0 bytes/s, done.&lt;br /&gt;
Total 3 (delta 0), reused 0 (delta 0)&lt;br /&gt;
To gituser@git-server:project.git&lt;br /&gt;
 * [new branch]      master -&amp;gt; master&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
=another git client=&lt;br /&gt;
==copy id_rsa.pub to the git server==&lt;br /&gt;
*ssh-copy-id gituser@git-server:&lt;br /&gt;
==get project==&lt;br /&gt;
*git clone gituser@git-server:project.git&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
Cloning into 'project'...&lt;br /&gt;
remote: Zähle Objekte: 3, Fertig.&lt;br /&gt;
remote: Total 3 (delta 0), reused 0 (delta 0)&lt;br /&gt;
Receiving objects: 100% (3/3), 250 bytes | 0 bytes/s, done.&lt;br /&gt;
Checking connectivity... done.&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
*project/&lt;br /&gt;
*ls -l &lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
total 4&lt;br /&gt;
-rwxrwxr-x 1 tw tw 28 Dez 20 16:33 silly-prog.sh&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;/div&gt;</summary>
		<author><name>Thomas.will</name></author>
	</entry>
</feed>