Git: Unterschied zwischen den Versionen

Aus Open Source Ecology - Germany
Zur Navigation springen Zur Suche springen
Zeile 20: Zeile 20:
 
==Commands==
 
==Commands==
 
===You changed files and want to commit them===
 
===You changed files and want to commit them===
git commit -a -m "YOURMESSAGE"
+
* git commit -a -m "YOURMESSAGE"
 +
* git push origin
  
git push origin
+
===Branches===
 +
* Rename branch: git branch -m <new_branch_name>
  
 
==Workflow==
 
==Workflow==

Version vom 25. Juli 2013, 14:33 Uhr

http://git-scm.com/

Windows

Here are described the steps to use Git under Windows. Feel free to improve the documentation.

Links

Github

Commands

You changed files and want to commit them

  • git commit -a -m "YOURMESSAGE"
  • git push origin

Branches

  • Rename branch: git branch -m <new_branch_name>

Workflow

Links