Проект

Общее

Профиль

GITMAGIC » История » Версия 3

Версия 2 (Dmitry Chernyak, 19.10.2012 16:36) → Версия 3/4 (Dmitry Chernyak, 22.02.2013 01:27)

h1. GITMAGIC

{{toc}}

[[INSTALL]] | [[BUILD-ISO]] | [[SETUP]] | [[OPERATIONS]] | [[GITMAGIC]] | [[LICENSE]] | [[STATUS]]
на Русском: [[ОБЗОР]] | [[СБОРКА-ISO]] | [[УСТАНОВКА]] | [[НАСТРОЙКА]] | [[ОПЕРАЦИИ]] | [[МАГИЯ GIT]] | [[ЛИЦЕНЗИЯ]] | [[СОСТОЯНИЕ]]

This is the brief Git info

h2. INTRODUCTION

Git (http://git-scm.com) is the widely used source code management system.
Git is used to hold and maintain SCI-CD project.

h2. USEFUL COMMANDS

@git branch@ - show available branches, marks current with '*'

@git status@ - show your uncommited changes

@git diff@ - show differences from the last state

@git diff BRANCH@ - show differences against BRANCH

@git commit (-a|FILE)@ - remember your changes in the current branch, you'll
have to write a short note

@git log@ - show the log of the commits; the revision number is the first few
letters from the commit hash

@git reset --hard@ - forgot all changes in all files

@git checkout -b BRANCH@ - create new branch BRANCH and switch to it

@git checkout BRANCH@ - switch to the branch BRANCH

@git checkout master; git pull@ - receive updates from the project

@git checkout local; git merge master@ - merge pulled updates into your
workspace

h2. SUBMITTING PATCHES

h2. MORE

For more information - read Git manuals.