diff options
author | Mattias Andrée <maandree@operamail.com> | 2013-09-16 11:02:58 +0200 |
---|---|---|
committer | Mattias Andrée <maandree@operamail.com> | 2013-09-16 11:02:58 +0200 |
commit | ee7952008cd7fc059132b78c6c31cd8bf20a5199 (patch) | |
tree | fe064c7e7d7063618d72c6db598feb3944857f27 /using-git.texinfo | |
parent | m + online documentation (diff) | |
download | using-git-ee7952008cd7fc059132b78c6c31cd8bf20a5199.tar.gz using-git-ee7952008cd7fc059132b78c6c31cd8bf20a5199.tar.bz2 using-git-ee7952008cd7fc059132b78c6c31cd8bf20a5199.tar.xz |
tig and bugseverywhere
Signed-off-by: Mattias Andrée <maandree@operamail.com>
Diffstat (limited to 'using-git.texinfo')
-rw-r--r-- | using-git.texinfo | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/using-git.texinfo b/using-git.texinfo index d41ec77..b0ed795 100644 --- a/using-git.texinfo +++ b/using-git.texinfo @@ -58,6 +58,7 @@ Texts. A copy of the license is included in the section entitled * I just don't know what went wrong:: * Version control:: * Interface:: +* Beyond Git:: * GNU Free Documentation License:: * Glossary:: @end menu @@ -1295,6 +1296,46 @@ is annoying. +@node Beyond Git +@chapter Beyond Git + +@menu +* Additional tools:: +@end menu + + + +@node Additional tools +@section Additional tools + +Git is used for source control, for +a complete, possibily collaborative, +development environment you additional +tools. + +Everything git can do, you can do in +the command line, but some repetitive +gets cumbersome in the command line +because you will need to run the same +command in unpre-predictable variations. +For this the package and command +@command{tig} may be just want you need +if you live in the terminal. + +@command{bugseverywhere} is a grate tool +for keeping track of issues in git repositories. +Issues are commited to the current branch +you are working on, meaning that you can +have separate issues in separate branches. +So if you have separate branches for separate +features that are being implemented you can +create separate issues inside those branches. +And when a branch get merged with your develop +branch the unresolved issues is merged into +the develop branch. + + + @node GNU Free Documentation License @appendix GNU Free Documentation License @include fdl.texinfo |