1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037
|
StGit tutorial
==============
StGit is a command-line application that provides functionality
similar to link:http://savannah.nongnu.org/projects/quilt/[Quilt]
(i.e. pushing/popping patches to/from a stack), but using Git instead
of +diff+ and +patch+. StGit stores its patches in a Git repository as
normal Git commits, and provides a number of commands to manipulate
them in various ways.
This tutorial assumes you are already familiar with the basics of Git
(for example, branches, commits, and conflicts). For more information
on Git, see linkman:git[1] or link:http://git.or.cz/[the Git home
page].
Help
====
For a full list of StGit commands:
$ stg help
For quick help on individual subcommands:
$ stg help <cmd>
For more extensive help on a subcommand:
$ man stg-<cmd>
(The documentation is also available in link:stg.html[HTML
format].)
Getting started
===============
StGit is not a stand-alone program -- it operates on a Git repository
that you have already created, using +git init+ or +git clone+. So get
one of those; if you don't have one at hand, try for example
$ git clone git://repo.or.cz/stgit.git
$ cd stgit
Before you can create StGit patches, you have to run linkstg:init[]:
$ stg init
This initializes the StGit metadata for the current branch. (So if you
want to have StGit patches in another branch too, you need to run +stg
init+ again in that branch.)
NOTE: As a shortcut, linkstg:clone[] will run +git clone+ followed by
+stg init+ for you.
Creating a patch
----------------
Now we're ready to create our first patch:
$ stg new my-first-patch
This will create a patch called +my-first-patch+, and open an editor
to let you edit the patch's commit message. (If you don't give a name
on the command line, StGit will make one up based on the first line of
the commit message.) This patch is empty, as linkstg:show[] will tell
you:
$ stg show
But it won't stay that way for long! Open one of the files in your
favorite text editor, change something, and save. You now have some
local changes in your tree:
$ stg status
M stgit/main.py
Then linkstgsub:refresh[] the patch:
$ stg refresh
And voilĂ -- the patch is no longer empty:
$ stg show
commit 3de32068c600d40d8af2a9cf1f1c762570ae9610
Author: Audrey U. Thor <author@example.com>
Date: Sat Oct 4 16:10:54 2008 +0200
Tell the world that I've made a patch
diff --git a/stgit/main.py b/stgit/main.py
index e324179..6398958 100644
--- a/stgit/main.py
+++ b/stgit/main.py
@@ -171,6 +171,7 @@ def _main():
sys.exit(ret or utils.STGIT_SUCCESS)
def main():
+ print 'My first patch!'
try:
_main()
finally:
(I'm assuming you're already familiar with
link:http://en.wikipedia.org/wiki/Diff#Unified_format[unified
diff] patches like this from Git, but it's really quite simple; in
this example, I've added the +$$print 'My first patch!'$$+ line to the
file +stgit/main.py+, at around line 171.)
Since the patch is also a regular Git commit, you can also look at it
with regular Git tools such as linkman:gitk[].
Creating another patch
----------------------
We want to make another improvement, so let's create a new patch for
it:
$ echo 'Audrey U. Thor' > AUTHORS
$ stg new credit --message 'Give me some credit'
$ stg refresh
Note that we can give the commit message on the command line, and that
it doesn't matter whether we run linkstg:new[] before or after we edit
the files.
So now we have two patches:
$ stg series --description
+ my-first-patch # This is my first patch
> credit # Give me some credit
linkstg:series[] lists the patches from bottom to top; +$$+$$+ means
that a patch is 'applied', and +>+ that it is the 'current', or
topmost, patch.
If we want to make further changes to the topmost patch, we just edit
the files and run +stg refresh+. But what if we wanted to change
+my-first-patch+? The simplest way is to linkstgsub:pop[] the +credit+
patch, so that +my-first-patch+ becomes topmost again:
$ stg pop credit
Checking for changes in the working directory ... done
Popping patch "credit" ... done
Now at patch "my-first-patch"
$ stg series --description
> my-first-patch # This is my first patch
- credit # Give me some credit
linkstg:series[] now shows that +my-first-patch+ is topmost again,
which means that linkstg:refresh[] will update it with any changes we
make.
The minus sign says that +credit+ is 'unapplied' -- this means that
it's been temporarily put aside. If you look at the +AUTHORS+ file,
you'll see that our change to it is gone; and tools such as
linkman:gitk[] will not show it, because it's been edited out of the
Git history. But it's just one linkstg:push[] command away from being
restored:
$ stg push credit
Checking for changes in the working directory ... done
Fast-forwarded patch "credit"
Now at patch "credit"
NOTE: You can omit the patch name argument to linkstg:push[] and
linkstg:pop[]. If you do, you will push the next unapplied patch, and
pop the topmost patch, respectively.
NOTE: There are at least two more ways to update a non-topmost patch.
One is to use linkstg:refresh[] with the +$$--patch$$+ flag, the other
to create a new patch for the update and then merge it into the other
patch with linkstg:squash[].
Keeping commit messages up to date
----------------------------------
Since StGit is all about creating readable Git history (or a readable
patch series, which is essentially the same thing), one thing you'll
want to pay attention to is the commit messages of your patches.
linkstg:new[] asks you for a commit message when you create a new
patch, but as time goes by and you refresh the patch again and again,
chances are that the original commit message isn't quite correct
anymore. Fortunately, editing the commit message is very easy:
$ stg edit <patch-name>
In addition to linkstg:edit[], you can also give the +$$--edit$$+ flag
to linkstg:refresh[] -- that way, you get to change the commit message
and update the patch at the same time. Use whichever feels most
natural to you.
NOTE: linkstg:edit[] has a +$$--diff$$+ flag, which gives you the diff
text and not just the commit message in your editor. Be aware, though,
that if you change the diff so that it no longer applies, the edit
will be saved to a file instead of being carried out. If you're not
comfortable editing diffs, just treat +$$--diff$$+ as a way to get to
'see' the diff while you edit the commit message.
If the patch changes considerably, it might even deserve a new name.
linkstg:rename[] is your friend there.
Conflicts
---------
Normally, when you pop a patch, change something, and then later push
it again, StGit sorts out everything for you automatically. For
example, let's create two patches that modify different files:
$ stg clone http://repo.or.cz/stgit.git stgit
$ cd stgit
$ stg new first --message 'First patch'
$ echo '- Do something' >> TODO
$ stg refresh
$ stg new second --message 'Second patch'
$ echo '- Install something' >> INSTALL
$ stg refresh
then pop them both:
$ stg pop --all
and then push them in the opposite order:
$ stg push second first
$ stg series
+ second
> first
StGit had no problems reordering these patches for us, since they
didn't touch the same file. But it would have worked just fine even if
they had touched the same file, as long as they didn't change the same
part of the file. But what if they did? Let's find out.
$ stg pop
Checking for changes in the working directory ... done
Popping patch "first" ... done
Now at patch "second"
$ echo '- Do something else' >> TODO
$ stg refresh
Now, both patches add a new line at the end of +TODO+. So what happens
when we try to have them both applied?
$ stg push
Pushing patch "first" ...
CONFLICT (content): Merge conflict in TODO
Error: The merge failed during "push".
Revert the operation with "stg undo".
stg push: 1 conflict(s)
StGit is telling us that it couldn't figure out how to push +first+ on
top of +second+, now that they both modify +TODO+. We can take a look
at the situation with linkstg:status[]:
$ stg status
C TODO
As we were told by linkstg:push[], the conflict is in the file +TODO+.
(If the patch was bigger and touched multiple files, they would all be
listed here; prefixed with +C+ if they had conflicts, and +M+ if StGit
managed to automatically resolve everything in the file.)
At this point, we have two options:
1. Undo the failed merge with linkstg:undo[]. (Remember to use the
+$$--hard$$+ flag, since the unresolved conflict means the
worktree is not clean.)
2. Manually resolve the conflict (editing the file directly followed
by +git add+ or using +git mergetool+.)
To resolve the conflict, open +TODO+ in your favorite editor. It ends
like this:
----------------------------------------------------------------------
- numeric shortcuts for naming patches near top (eg. +1, -2)
- (config?) parameter for number of patches included by "series -s"
<<<<<<< current:TODO
- Do something else
=======
- Do something
>>>>>>> patched:TODO
----------------------------------------------------------------------
The 'conflict markers' +<<<<<<<+, +=======+, and +>>>>>>>+ indicate
which lines were already there (+current+) and which were added by the
patch (+patched+). Edit the file so that it looks like it should; in
this case, we want something like this:
----------------------------------------------------------------------
- numeric shortcuts for naming patches near top (eg. +1, -2)
- (config?) parameter for number of patches included by "series -s"
- Do something
- Do something else
----------------------------------------------------------------------
Note that ``looks like it should'' includes removing the conflict
markers.
Now that we've resolved the conflict, we just need to tell StGit about
it:
$ git add TODO
$ stg status
M TODO
+TODO+ is listed as being modified, not in conflict. And we know from
before how to deal with modified files:
$ stg refresh
The conflict is now resolved. We can see that +first+ now looks a
little different; it no longer adds a line at the end of the file:
$ stg show
commit 8e3ae5f6fa6e9a5f831353524da5e0b91727338e
Author: Audrey U. Thor <author@example.com>
Date: Sun Oct 5 14:43:42 2008 +0200
First patch
diff --git a/TODO b/TODO
index 812d236..4ef3841 100644
--- a/TODO
+++ b/TODO
@@ -24,4 +24,5 @@ The future, when time allows or if someone else does them:
they have scripts for moving the changes in one to the others)
- numeric shortcuts for naming patches near top (eg. +1, -2)
- (config?) parameter for number of patches included by "series -s"
+- Do something
- Do something else
Workflow: Development branch
============================
One common use of StGit is to ``polish'' a Git branch before you
publish it for others to see. Such history falsification can often be
a 'good' thing -- when you (or someone else) needs to look at what you
did six months later, you are not really interested in all the false
starts and the steps needed to corect them. What you want is the final
solution, presented in a way that makes it easy to read and
understand.
Of course, there are limits. Editing the last few days' worth of
history is probably a good idea; editing the last few months' probably
isn't. A rule of thumb might be to not mess with history old enough
that you don't remember the details anymore. And rewriting history
that you have published for others to see (and base their own work on)
usually just makes everyone more confused, not less.
So, let's take a concrete example. Say that you're hacking on StGit,
and have made several Git commits as your work progressed, with commit
messages such as ``Improve the snarfle cache'', ``Remove debug
printout'', ``New snarfle cache test'', ``Oops, spell function name
correctly'', ``Fix documentation error'', and ``More snarfle cache''.
Now, this is the actual history, but for obvious reasons, this isn't
the kind of history you'd ideally want to find when you six months
from now try to figure out exactly where that elusive snarfle cache
bug was introduced. So let's turn this into the history we can be
proud of. The first step is to make StGit patches out of all those Git
commits:
$ stg uncommit --number 6
Uncommitting 6 patches ...
Now at patch "more-snarfle-cache"
done
$ stg series --description
+ improve-the-snarfle-cache # Improve the snarfle cache
+ remove-debug-printout # Remove debug printout
+ new-snarfle-cache-test # New snarfle cache test
+ oops-spell-function-name-corre # Oops, spell function name correctly
+ fix-documentation-error # Fix documentation error
> more-snarfle-cache # More snarfle cache
As you can see, linkstg:uncommit[] adds StGit metadata to the last few
Git commits, turning them into StGit patches so that we can do stuff
with them.
NOTE: With the +$$--number$$+ flag, linkstg:uncommit[] uncommits that
many commits and generates names for them based on their commit
messages. If you like, you can instead list the patch names you want
on the command line.
At this point, there are a number of things we could do:
* Continue developing, and take advantage of e.g. linkstg:goto[] or
+stg refresh $$--patch$$+ to stick updates in the right patch to
begin with.
* Use e.g. linkstg:float[], linkstg:sink[], linkstg:push[], and
linkstg:pop[] to reorder patches.
* Use linkstg:squash[] to merge two or more patches into one.
linkstgsub:squash[] pushes and pops so that the patches to be
merged are consecutive and unrelated patches aren't in the way,
then makes one big patch out of the patches to be merged, and
finally pushes the other patches back.
+
Of course, as always when there is pushing involved, there is the
possibility of conflicts. If a push results in a conflict, the
operation will be halted, and we'll be given the option of either
resolving the conflict or undoing.
Once we feel that the history is as good as it's going to get, we can
remove the StGit metadata, turning the patches back into regular Git
commits again:
$ stg commit --all
TIP: linkstg:commit[] can also commit specific patches (named on the
command line), leaving the rest alone. This can be used to retire
patches as they mature, while keeping the newer and more volatile
patches as patches.
Workflow: Tracking branch
=========================
In the 'Development branch' workflow described above, we didn't have
to worry about other people; we're working on our branch, they are
presumably working on theirs, and when the time comes and we're ready
to publish our branch, we'll probably end up merging our branch with
those other peoples'. That's how Git is designed to work.
Or rather, one of the ways Git is designed to work. An alternative,
popular in e.g. the Linux kernel community (for which Git was
originally created), is that contributors send their patches by e-mail
to a mailing list. Others read the patches, try them out, and provide
feedback; often, the patch author is asked to send a new and improved
version of the patches. Once the project maintainer is satisfied that
the patches are good, she'll 'apply' them to a branch and publish it.
StGit is ideally suited for the process of creating patches, mailing
them out for review, revising them, mailing them off again, and
eventually getting them accepted.
Getting patches upstream
------------------------
We've already covered how to clone a Git repository and start writing
patches. As for the next step, there are two commands you might use to
get patches out of StGit: linkstg:mail[] and linkstg:export[].
linkstg:export[] will export your patches to a filesystem directory as
one text file per patch, which can be useful if you are going to send
the patches by something other than e-mail. Most of the time, though,
linkstg:mail[] is what you want.
NOTE: Git comes with tools for sending commits via e-mail. Since StGit
patches are Git commits, you can use the Git tools if you like them
better for some reason.
NOTE: For exporting single patches -- as opposed to a whole bunch of
them -- you could also use linkstg:show[] or linkstg:diff[].
Mailing a patch is as easy as this:
$ stg mail --to recipient@example.com <patches>
You can list one or more patches, or ranges of patches. Each patch
will be sent as a separate mail, with the first line of the commit
message as subject line. Try mailing patches to yourself to see what
the result looks like.
NOTE: linkstg:mail[] uses +sendmail+ on your computer to send the
mails. If you don't have +sendmail+ properly set up, you can instruct
it to use any SMTP server with the +$$--smtp-server$$+ flag.
There are many command-line options to control exactly how mails are
sent, as well as a message template you can modify if you want. The
man page has all the details; I'll just mention two more here.
+$$--edit-cover$$+ will open an editor and let you write an
introductory message; all the patch mails will then be sent as replies
to this 'cover message'. This is usually a good idea if you send more
than one patch, so that reviewers can get a quick overview of the
patches you sent.
+$$--edit-patches$$+ will let you edit each patch before it is sent.
You can change anything, but note that you are only editing the
outgoing mail, not the patch itself; if you want to make changes to
the patch, you probably want to use the regular StGit commands to do
so. What this 'is' useful for, though, is to add notes for the patch
recipients:
----------------------------------------------------------------------
From: Audrey U. Thor <author@example.com>
Subject: [PATCH] First line of the commit message
The rest of the commit message
---
Everything after the line with the three dashes and before the diff is
just a comment, and not part of the commit message. If there's
anything you want the patch recipients to see, but that shouldn't be
recorded in the history if the patch is accepted, write it here.
stgit/main.py | 1 +
1 files changed, 1 insertions(+), 0 deletions(-)
diff --git a/stgit/main.py b/stgit/main.py
index e324179..6398958 100644
--- a/stgit/main.py
+++ b/stgit/main.py
@@ -171,6 +171,7 @@ def _main():
sys.exit(ret or utils.STGIT_SUCCESS)
def main():
+ print 'My first patch!'
try:
_main()
finally:
----------------------------------------------------------------------
Rebasing a patch series
-----------------------
While you are busy writing, submitting, and revising your patch
series, other people will be doing the same thing. As a result, even
though you started writing your patches on top of what was the latest
history at the time, your stack base will grow ever more out of date.
When you clone a repository,
$ stg clone http://repo.or.cz/stgit.git stgit
you initially get one local branch, +master+. You also get a number of
'remote' branches, one for each branch in the repository you cloned.
In the case of the StGit repository, these are
+remotes/origin/stable+, +remotes/origin/master+, and
+remotes/origin/proposed+. +remotes+ means that it's not a local
branch, just a snapshot of a branch in another repository; and
+origin+ is the default name for the first remote repository (you can
set up more; see the man page for +git remote+).
Right after cloning, +master+ and +remotes/origin/master+ point at the
same commit. When you start writing patches, +master+ will advance,
and always point at the current topmost patch, but
+remotes/origin/master+ will stay the same because it represents the
master branch in the repository you cloned from -- your 'upstream'
repository.
Unless you are the only one working on the project, however, the
upstream repository will not stay the same forever. New commits will
be added to its branches; to update your clone, run
$ git remote update
This will update all your remote branches, but won't touch your local
branches. To get the latest changes into your local +master+ branch,
use linkstg:rebase[]:
$ stg rebase remotes/origin/master
This command will do three things:
1. Pop all patches, so that your local branch (+master+, in this
example) points at the stack base. This is the same commit that
+remotes/origin/master+ pointed at at the time you started
writing your patches.
2. Set the stack base to the given commit (the current, updated
value of +remotes/origin/master+).
3. Push the patches that were popped in the first step.
The end result is that your patches are now applied on top of the
latest version of +remotes/origin/master+.
The primary reason for rebasing is to reduce the amount of conflicts
between your work and others'. If one of your patches changes the same
part of the same file as a patch someone else has written, you will
get a conflict when you run linkstg:rebase[] the next time after the
other person's patch has been accepted upstream. It is almost always
less work to rebase often and resolve these one at a time, rather than
a whole lot at once. After all, you have to rebase eventually; if you
mail out patches that are based on an outdated branch, everyone who
tries to apply them has to resolve the conflicts instead. There are
more effective ways to get popular.
When your patches are accepted
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
If and when some or all of your patches are accepted upstream, you
update and rebase just like usual -- but be sure to use the
+$$--merged$$+ flag to linkstg:rebase[]:
$ git remote update
$ stg rebase --merged remotes/origin/master
This flag makes the rebase operation better at detecting that your
patches have been merged, at some cost in performance.
The patches that had been merged will still be present in your patch
stack after the rebase, but they will be empty, since the change they
added is now already present in the stack base. Run linkstg:clean[] to
get rid of such empty patches if you don't want them hanging around:
$ stg clean
Importing patches
-----------------
While you are busy producing patches, there's hopefully someone -- the
'maintainer' -- at the other end who recieves them and 'applies' them
to her Git tree, which is then published for all (or parts of) the
world to see.
It's perfectly fine for this person to not have the foggiest idea what
StGit is. In that case, she'll probably apply your patches with
something like +git am+, and everything will just work, exactly as if
you'd used Git to send those patches. But she might be an StGit user
too, in which case she might use linkstg:import[].
There are basically four kinds if stuff you can import with
linkstg:import[]:
1. A patch in a file.
2. Several files containing one patch each, and a 'series' file
listing those other files in the correct order.
3. An e-mail containing a single patch.
4. A mailbox file (in standard Unix +mbox+ format) containing
multiple e-mails with one patch in each.
Importing a plain patch
~~~~~~~~~~~~~~~~~~~~~~~
Importing a plain patch, such as produced by e.g. GNU +diff+, +git
diff+, +git show+, linkstg:diff[], or linkstg:show[], is very easy.
Just say
$ stg import my-patch
and you'll have a new patch at the top of your stack.
If you don't give a file name on the command line, linkstg:import[]
will read the patch from its standard input -- in other words, you can
pipe a patch to it directly from the command that produces it.
By default, the new patch's name will be taken from the file name, and
its commit message and author info will be taken from the beginning of
the patch, if they are there. However, there are command line switches
to override all of these things; see the man page for details.
Importing several patches at once
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
Some programs -- among them linkstg:export[] -- will create a bunch of
files with one patch in each, and a 'series' file (often called
+series+) listing the other files in the correct order. Give
+$$--series$$+ and the name of the series file to linkstg:import[],
and it will import all the patches for you, in the correct order.
Importing a patch from an e-mail
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Importing a patch from an e-mail is simple too:
$ stg import --mail my-mail
The e-mail should be in standard Git mail format (which is what e.g.
linkstg:mail[] produces) -- that is, with the patch in-line in the
mail, not attached. The authorship info is taken from the mail
headers, and the commit message is read from the 'Subject:' line and
the mail body.
If you don't give a file name, the mail will be read from the standard
input. This means that, if your mail reader supports it, you can pipe
a mail directly to +stg import $$--mail$$+ and the patch will be
applied.
Importing a mailbox full of patches
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
Finally, in case importing one patch at a time is too much work,
linkstg:import[] also accepts an entire Unix +mbox+-format mailbox,
either on the command line or on its standard input; just use the
+$$--mbox$$+ flag. Each mail should contain one patch, and is imported
just like with +$$--mail$$+.
Mailboxes full of patches are produced by e.g. linkstg:mail[] with the
+$$--mbox$$+ flag, but most mail readers can produce them too, meaning
that you can copy all the patch mails you want to apply to a separate
mailbox, and then import them all in one go.
Other stuff that needs to be placed somewhere
=============================================
Undo
----
TODO:: undo, redo, log, reset
Interoperating with Git
-----------------------
TODO::
* git commit + repair
* git reset HEAD~n + repair
* don't do git rebase or git merge, because it won't work
Patch stuff
-----------
TODO:: This section needs revising. I've only fixed the formatting.
Most of it should go under "Workflow: Tracking branch"
As mentioned in the introduction, StGit stores modifications to your
working tree in the form of Git commits. This means if you want to
apply your changes to a tree not managed by Git, or send your changes
to someone else in e-mail, you need to convert your StGit patches into
normal textual diffs that can be applied with the GNU patch command.
linkstg:diff[] is a powerful way to generate and view textual diffs of
patches managed by StGit.
To view a diff of the topmost patch:
$ stg diff -r /
Observe that this does not show any changes in the working directory
that have not been saved by a linkstgsub:refresh[]. To view just the
changes you've made since the last refresh, use:
$ stg diff -r /top
If you want to see the changes made by the patch combined with any
unsaved changes in the working directory, try:
$ stg diff -r /bottom
You can also show the changes to any patch in your stack with:
$ stg diff -r <patch>/
Use this command to view all the changes in your stack up through the
current patch:
$ stg diff -r base
linkstg:diff[] supports a number of other features that are very
useful. Be sure to take a look at the help information for this
command. To convert your StGit patches into patch files:
$ stg export [--range=[<patch1>[:<patch2>]]] [<dir-name>]
linkstg:export[] supports options to automatically number the patches
(+-n+) or add the +.diff+ extension (+-d+). If you don't tell
linkstgsub:export[] where to put the patches, it will create directory
named +patch-<branchname>+ in your current directory, and store the
patches there. To e-mail a patch or range of patches:
$ stg mail [--to=...] (--all | --range=[<patch1>[:<patch2>]] | <patch>)
linkstg:mail[] has a lot of options, so read the output of +stg mail
-h+ for more information.
You can also import an existing GNU diff patch file as a new StGit
patch with a single command. linkstg:import[] will automatically parse
through the patch file and extract a patch description. Use:
$ stg import [<file>]
This is the equivalent of
$ stg new
$ patch -i <file>
$ stg refresh -e
Sometimes the patch file won't apply cleanly. In that case,
linkstg:import[] will leave you with an empty StGit patch, to which
you then apply the patch file by hand using "patch -i" and your
favorite editor.
To merge a GNU diff file (defaulting to the standard input) into the
topmost patch:
$ stg fold [<file>]
This command supports a +$$--threeway$$+ option which applies the
patch onto the bottom of the topmost one and performs a three-way
merge.
Templates
---------
TODO:: This section needs revising. I've only fixed the formatting.
linkstg:export[] and linkstg:mail[] use templates for generating the
patch files or e-mails. The default templates are installed under
+<prefix>/share/stgit/templates/+ and, combined with the extra options
available for these commands, should be enough for most users. The
template format uses the standard Python string formatting rules. The
variables available are listed in the the manual pages for each
command. linkstg:mail[] can also send an initial 'cover' e-mail for
which there is no default template. The
+<prefix>/share/stgit/examples/firstmail.tmpl+ file can be used as an
example. A default description for new patches can be defined in the
+.git/ patchdescr.tmpl+ file. This is useful for things like
signed-off-by lines.
Emacs
=====
StGit comes with an Emacs mode, +stgit-mode+, supporting Emacs
versions 22 and later.
To start using it, add the +stgit/contrib+ directory to your Emacs
load-path and run +(require 'stgit)+. For example, you can add the
following to your +.emacs+ file:
----------------------------------------------------------------------
(add-to-list 'load-path "/path/to/stgit/contrib")
(require 'stgit)
----------------------------------------------------------------------
Start +stgit-mode+ using +M-x stgit+ and select the directory where
the source code you want to use StGit on can be found. If StGit has
not been initialized in this directory yet, you will need to run +M-x
stgit-init+ before you continue.
The +stgit-mode+ buffer (usually named +$$*stgit*$$+) has the
following layout:
----------------------------------------------------------------------
Branch: name-of-branch
+ The first applied patch
+ Another applied patch
> The topmost patch
Index
<no files>
Work Tree
<no files>
- An unapplied patch
- Another unapplied patch
--
----------------------------------------------------------------------
The above means that the active branch name is +name-of-branch+ and it
contains five patches, three of which are applied. The git index and
working tree contain no (modified) files.
Basic Commands
--------------
To get help, press +h+. This opens a new buffer which lists all
commands supported in +stgit-mode+. Also, if you have the menu bar
enabled (toggled using +M-x menu-bar-mode+), a new menu entry called
+StGit+ will appear, from which you can run several StGit commands. As
the menu should be self-explanatory, the rest of this tutorial will
focus on available keyboard commands.
Move the point (cursor) between lines using +C-p+ and +C-n+, or
between patches using +p+ and +n+.
You can linkstgsub:undo[] and linkstgsub:redo[] StGit commands using
+C-/+ and +C-c C-/+, respectively.
Creating New Patches
--------------------
If you want to create a new patch, first make some changes that should
go into it. As you save a file which is Git-controlled, it will appear
as a modification in the +Work Tree+ section:
----------------------------------------------------------------------
Work Tree
Modified foo.txt
----------------------------------------------------------------------
To create a new patch based on the changes in the index or, if it
contains no changes, the working tree, press +c+. This opens a new
buffer where you can enter the patch description. When you are done,
press +C-c C-c+. Your new patch will now show up in the +$$*stgit*$$+
buffer, and the working tree will no longer contain any modifications:
----------------------------------------------------------------------
+ The topmost patch
> First line of your new description
Index
<no files>
Work Tree
<no files>
----------------------------------------------------------------------
As you make additional changes in your files, and want to include them
in the topmost patch, press +r+, which runs linkstg:refresh[]. If you
want to add the changes to a patch which is not topmost, move the
point to the line of that patch and press +C-u r+.
Inspecting Patches
------------------
To see what a particular patch contains, you can move the point
(cursor) to the line of that patch, and press +RET+ (Enter). This will
"expand" the patch and show which files it changes:
----------------------------------------------------------------------
+ My patch
Modified foo.txt
Deleted bar.c
----------------------------------------------------------------------
You can press +=+, which will show the diff of that patch or file in a
new buffer. With a prefix argument (+C-u =+), the diff will not show
changes in whitespace.
To visit (open) a modified file in another Emacs window, press +o+ on
that line. +RET+ will visit it in the current window.
Changing the Patch Series
-------------------------
You can linkstgsub:push[] and linkstgsub:pop[] patches using +>+
(pushes the topmost unapplied patch onto the stack) and +<+ (pops the
topmost applied patch off the stack).
By moving the point to a particular patch and pressing +P+ (+S-p+)
you either (if it already was applied) pop that patch off the stack,
or (if it was unapplied) push it onto the stack.
You can move patches by first marking one or more using +m+. Then,
move the point to where in the series you want these patches to move,
and press +M+. Use +DEL+ or +u+ to remove a mark.
You can also combine (linkstgsub:squash[]) two or more patches by
marking them and pressing +S+ (+S-s+). This will open a new buffer
where you can edit the patch description of the new, combined, patch.
When done, press +C-c C-c+, and the topmost of the marked patches will
be replaced in the stack by one combined patch.
You can linkstgsub:delete[] a patch by moving to its line and pressing
+D+. If you press +C-u D+, the contents of the patch will be spilled
to the index.
To linkstgsub:edit[] the description of a patch, press +e+. This opens
the patch description in a new buffer. Press +C-c C-c+ when you are
done editing the patch.
These operations may result in merge conflicts; more about that later.
Patch Names
-----------
By default, the patch description is shown but not the patch names.
You can toggle showing the names using +t n+. To rename a patch, press
+C-c C-r+.
Showing Committed Patches
-------------------------
Sometimes it is convenient to be able to investigate already committed
patches. Toggle showing these using +t h+. With a prefix argument, you
can set how many to show; e.g., +7 t h+ will show seven already
committed patches.
Using the Index and Working Tree
--------------------------------
You can move a changed file between the index and the working tree
using +i+. This is useful if your working tree contains a number of
changes and you want to create or refresh a patch using only some of
the changed files. Once you have the correct set of files in the
index, use +c+ to create or +r+ to refresh patches using only the
files in the index.
If you want to revert a change in either the index or the working
tree, move the point to that line and press +U+. If you press +U+ on
the +Index+ or +Work Tree+ lines, all the changes in the index or
working tree will be reverted.
Branches
--------
You can switch to another linkstgsub:branch[] by pressing +B+. If you
type the name of a branch that does not exist, you will be asked
whether to create one. The new branch will be based off the current
+HEAD+.
Use +C-c C-b+ to linkstgsub:rebase[] the current branch. It will
default to rebasing to the +git config+ setting for
+branch._branch_.stgit.parentbranch+.
Merge Conflicts
---------------
If an operation resulted in a merge conflict, the files with conflicts
will show as +Unmerged+ in the +$$*stgit*$$+ buffer.
To handle the conflicts, you can linkstgsub:undo[] the operation that
caused the conflict using +C-u C-/+. Note the +C-u+ prefix, which will
tell the undo operation to continue despite the index or working tree
containing changes.
If you instead want to resovle the changes, you must first edit the
files with conflicts to make sure they are in the correct state. Once
you have done this, press +R+ on the line of that file, which will
remove the +Unmerged+ flag. Once all conflicts have been resolved, you
can continue working as normal, for example by refreshing the patch
that had the conflict.
To investigate the reason of conflicts, you can use the +d b+, +d o+,
and +d t+ commands to, respectively, show the diffs against the merge
base, our branch, or their branch. +d c+ shows a combined diff. See
linkman:git-diff[1] for more information about these commands.
A more powerful tool to resolve conflicts is the Emacs +smerge-mode+.
To start using it to resolve a conflict, press +d m+. It is outside
the scope of this tutorial to explain how to use it, but press +q+ to
leave +smerge-mode+.
|