Using Git

You are viewing an old version of this article. View the current version here.

Setup

  • Run
git clone [email protected]:MariaDB/server.git

Branches

This is an important concept, and git branches do not have equivalents in bzr.

In Bazaar, we all used to have one shared repository, within which there were many branches. This seems to be impossible with git?

In Git, each repository has only one branch that is currently checked out.

git branch

Equivalents for some bzr commands

CAVEAT EMPTOR. Check the manual before running!

  • bzr status is git status
  • bzr diff is git diff
  • bzr revert is git reset --hard

GUIs

  • bzr gcommit is git citool
  • bzr gannotate is gitk

Comments

Comments loading...
Content reproduced on this site is the property of its respective owners, and this content is not reviewed in advance by MariaDB. The views, information and opinions expressed by this content do not necessarily represent those of MariaDB or any other party.