User Tools

Site Tools


info:code:git
Please note, that this is an old archived version of this site. Check out the new version at andunix.net!

This is an old revision of the document!


Git

Basics

Init Repository

Standard:

git init [DIR]

Bare:

git init --bare [DIR]

Branches

List Branches

git branch

Switch Branch

git checkout BRANCH

Subversion

Update

git svn fetch

Git Flow

Init

git flow init

Feature

git flow feature start FEATURE
git flow feature finish FEATURE

Release

git flow release start RELEASE [BASE] 
git flow release finish RELEASE

Hotfix

git flow hotfix start VERSION [BASENAME]
git flow hotfix finish VERSION
info/code/git.1470991894.txt.gz · Last modified: 2016-08-12 08:51 by andunix