diff --git a/index.html b/index.html index 12d19aa..fd414e0 100644 --- a/index.html +++ b/index.html @@ -5,7 +5,7 @@
-
- Why Git is Better than X+Почему Git лучше чем X |
- Cheap Local Branching + Простое локальное ветвление
- Probably Git's most compelling feature that really makes it stand
- apart from nearly every other SCM out there is its branching
- model. It is completely different from all of the models I'm
- comparing it to here, most of which recommend that the best branch
- is basically a clone of the repository in a new directory.
+ Наверно самая значимая возможность Git, которая ставит его в сторону
+ по сравнению почти со всеми остальными системами управлением версиями,
+ это модель ветвления. Она полностью отличается от всех моделей,
+ сравниваемых здесь, большинство из которых рекомендуют,
+ что лучшая ветка, это копия репозитория в новом каталоге.
- Git does not work like that. Git will allow you to have multiple
- local branches that can be entirely independent of each other and
- the creation, merging and deletion of those lines of development
- take seconds.
+ Git работает не так. Git позволяет вам иметь множество локальных веток
+ которые могут быть полностью независыми друг от друга,
+ а создание, слияние и удаление этих веток разработки занимает секунды.
- This means that you can do things like:
+ Это означает что вы можете:
@@ -141,18 +142,18 @@
|
Bzr | ||||
---|---|---|---|---|
Init | +Init (Создание репозитория) | 0.024s | 0.059s | 0.600s |
Add | +Add (Добавление) | 8.535s | 0.368s | 2.381s |
Status | +Status (Состояние) | 0.451s | 1.946s | 14.744s |
Diff | +Diff (Отличия) | 0.543s | 2.189s | 14.248s |
Tag | +Tag (Метка) | 0.056s | 1.201s | 1.892s |
Log | +Log (История) | 0.711s | 2.650s | 9.055s |
Commit (Large) | +Commit (Большой коммит) | 12.480s | 12.500s | 23.002s |
Commit (Small) | +Commit (Маленький коммит) | 0.086s | 0.517s | 1.139s |
Branch (Cold) | +Branch (Холодное) | 1.161s | 94.681s | 82.249s |
Branch (Hot) | +Branch (Горячее) | 0.070s | 12.300s | 39.411s | @@ -351,24 +346,21 @@
git clone git://github.com/brosner/django.git dj-git
hg clone http://hg.dpaste.com/django/trunk dj-hg
SVN | ||||||||
---|---|---|---|---|---|---|---|---|
Repo Alone | +Только хранилище | 24M | 34M | 45M | ||||
Entire Directory | +Вся папка | 43M | 53M | 64M | @@ -440,36 +431,33 @@
- + |
- Prior to Git 1.6, all of the Git commands used to be in the executable
- path, which was very confusing to people. Although Git still recognizes
- all of those commands, the only command in the path is now 'git'.
- So, if you look at Mercurial and Git, Git has a nearly identical
- command set and help system—there is very little difference from
- a beginning UI perspective today.
+
+ Вплоть до Git 1.6., все команды Git были исполняемыми программами, что
+ создавало много путаницы. Git всё ещё понимает все эти команды, но теперь
+ единственная исполняемая команда — это 'git'. Так что если сравнить
+ Mercurial и Git, у Git почти идентичная система команд и справки и есть
+ лишь небольшая разница на начальном этапе с точки зрения пользовательского интерфейса.
-
- These days it's pretty hard to argue that Mercurial or Bazaar is any
- easier to learn than Git is.
+
@@ -765,24 +743,24 @@
+ В наши дни уже довольно сложно утверждать, что изучить Mercurial или Bazaar легче, чем Git.
Git Help |