Git: Difference between revisions

From Wiki
No edit summary
No edit summary
Line 3: Line 3:
<pre>
<pre>
git init
git init
</pre>
</blockquote>
* show changed files
<blockquote>
<pre>
git diff --cached --name-only
</pre>
</pre>
</blockquote>
</blockquote>

Revision as of 22:05, 31 January 2018

  • Create repository (on server)
git init
  • show changed files
git diff --cached --name-only
  • add files
git add *
  • commit changes
git commit -m "Commit-Nachricht"
git commit -a                      # includes add
  • send changes to server
git push
  • get latest changes from server
git pull