From 051090dd538aa6c025a22ae896e2af1713e1522f Mon Sep 17 00:00:00 2001 Message-Id: <051090dd538aa6c025a22ae896e2af1713e1522f.1715165718.git.mdw@distorted.org.uk> From: Mark Wooding Date: Sun, 11 Nov 2007 14:07:36 +0100 Subject: [PATCH] Rename "stg assimilate" to "stg repair" MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Organization: Straylight/Edgeware From: Karl Hasselström With the capabilities it's gained lately, this is a better name. Signed-off-by: Karl Hasselström --- Documentation/stg.txt | 4 +-- contrib/stgit-completion.bash | 2 +- stgit/commands/common.py | 2 +- stgit/commands/{assimilate.py => repair.py} | 23 +++++++------- stgit/main.py | 4 +-- t/{t1301-assimilate.sh => t1301-repair.sh} | 30 ++++++++----------- ...ate-interop.sh => t1302-repair-interop.sh} | 8 ++--- 7 files changed, 34 insertions(+), 39 deletions(-) rename stgit/commands/{assimilate.py => repair.py} (90%) rename t/{t1301-assimilate.sh => t1301-repair.sh} (70%) rename t/{t1302-assimilate-interop.sh => t1302-repair-interop.sh} (91%) diff --git a/Documentation/stg.txt b/Documentation/stg.txt index 4f9d18e..f6cd815 100644 --- a/Documentation/stg.txt +++ b/Documentation/stg.txt @@ -146,8 +146,8 @@ stglink:commit[]:: stgdesc:commit[] stglink:uncommit[]:: stgdesc:uncommit[] -stglink:assimilate[]:: - stgdesc:assimilate[] +stglink:repair[]:: + stgdesc:repair[] Controlling what patches are applied ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ diff --git a/contrib/stgit-completion.bash b/contrib/stgit-completion.bash index b1d2730..b3b23d4 100644 --- a/contrib/stgit-completion.bash +++ b/contrib/stgit-completion.bash @@ -13,7 +13,6 @@ _stg_commands=" add applied - assimilate branch delete diff @@ -42,6 +41,7 @@ _stg_commands=" rebase refresh rename + repair resolved rm series diff --git a/stgit/commands/common.py b/stgit/commands/common.py index 2a80e8c..2672dcf 100644 --- a/stgit/commands/common.py +++ b/stgit/commands/common.py @@ -114,7 +114,7 @@ def check_head_top_equal(crt_series): if not crt_series.head_top_equal(): raise CmdException( """HEAD and top are not the same. This can happen if you - modify a branch with git. The "assimilate" command can + modify a branch with git. The "repair" command can fix this situation.""") def check_conflicts(): diff --git a/stgit/commands/assimilate.py b/stgit/commands/repair.py similarity index 90% rename from stgit/commands/assimilate.py rename to stgit/commands/repair.py index be992aa..f8fe624 100644 --- a/stgit/commands/assimilate.py +++ b/stgit/commands/repair.py @@ -29,28 +29,28 @@ from stgit import stack, git help = 'StGit-ify any git commits made on top of your StGit stack' usage = """%prog [options] -"assimilate" will repair three kinds of inconsistencies in your StGit +"repair" will repair three kinds of inconsistencies in your StGit stack, all of them caused by using plain git commands on the branch: 1. If you have made regular git commits on top of your stack of - StGit patches, "assimilate" converts them to StGit patches, + StGit patches, "repair" converts them to StGit patches, preserving their contents. 2. Merge commits cannot become patches; if you have committed a - merge on top of your stack, "assimilate" will simply mark all + merge on top of your stack, "repair" will simply mark all patches below the merge unapplied, since they are no longer reachable. If this is not what you want, use "git reset" to get - rid of the merge and run "assimilate" again. + rid of the merge and run "repair" again. 3. The applied patches are supposed to be precisely those that are reachable from the branch head. If you have used e.g. "git reset" to move the head, some applied patches may no longer be reachable, and some unapplied patches may have become reachable. - "assimilate" will correct the appliedness of such patches. + "repair" will correct the appliedness of such patches. Note that these are "inconsistencies", not "errors"; furthermore, -"assimilate" will repair them reliably. As long as you are satisfied -with the way "assimilate" handles them, you have no reason to avoid +"repair" will repair them reliably. As long as you are satisfied +with the way "repair" handles them, you have no reason to avoid causing them in the first place if that is convenient for you.""" directory = DirectoryGotoToplevel() @@ -99,11 +99,10 @@ def read_commit_dag(branch): return commits, patches def func(parser, options, args): - """Assimilate a number of patches. - """ + """Repair inconsistencies in StGit metadata.""" def nothing_to_do(): - out.info('No commits to assimilate') + out.info('Nothing to repair') orig_applied = crt_series.get_applied() orig_unapplied = crt_series.get_unapplied() @@ -118,7 +117,7 @@ def func(parser, options, args): raise CmdException( 'This branch is protected. Modification is not permitted.') - # Find commits to assimilate, and applied patches. + # Find commits that aren't patches, and applied patches. commits, patches = read_commit_dag(crt_series.get_name()) c = commits[head] patchify = [] @@ -149,7 +148,7 @@ def func(parser, options, args): % (len(hidden), ['es', ''][len(hidden) == 1])), '%s,' % merge.id, 'and will be considered unapplied.') - # Assimilate any linear sequence of commits on top of a patch. + # Make patches of any linear sequence of commits on top of a patch. names = set(p.patch for p in patches) def name_taken(name): return name in names diff --git a/stgit/main.py b/stgit/main.py index e8242c2..a03447f 100644 --- a/stgit/main.py +++ b/stgit/main.py @@ -60,7 +60,6 @@ class Commands(dict): commands = Commands({ 'add': 'add', 'applied': 'applied', - 'assimilate': 'assimilate', 'branch': 'branch', 'delete': 'delete', 'diff': 'diff', @@ -89,6 +88,7 @@ commands = Commands({ 'rebase': 'rebase', 'refresh': 'refresh', 'rename': 'rename', + 'repair': 'repair', 'resolved': 'resolved', 'rm': 'rm', 'series': 'series', @@ -109,7 +109,6 @@ repocommands = ( ) stackcommands = ( 'applied', - 'assimilate', 'branch', 'clean', 'commit', @@ -122,6 +121,7 @@ stackcommands = ( 'pull', 'push', 'rebase', + 'repair', 'series', 'sink', 'top', diff --git a/t/t1301-assimilate.sh b/t/t1301-repair.sh similarity index 70% rename from t/t1301-assimilate.sh rename to t/t1301-repair.sh index 7f47c31..5d9bdbd 100755 --- a/t/t1301-assimilate.sh +++ b/t/t1301-repair.sh @@ -1,19 +1,19 @@ #!/bin/sh # Copyright (c) 2006 Karl Hasselström -test_description='Test the assimilate command.' +test_description='Test the repair command.' . ./test-lib.sh test_expect_success \ - 'Assimilate in a non-initialized repository' \ - '! stg assimilate' + 'Repair in a non-initialized repository' \ + '! stg repair' test_expect_success \ 'Initialize the StGIT repository' \ 'stg init' test_expect_success \ - 'Assimilate in a repository without patches' \ - 'stg assimilate' + 'Repair in a repository without patches' \ + 'stg repair' test_expect_success \ 'Create a patch' \ @@ -25,8 +25,8 @@ test_expect_success \ ' test_expect_success \ - 'Assimilate when there is nothing to do' \ - 'stg assimilate' + 'Repair when there is nothing to do' \ + 'stg repair' test_expect_success \ 'Create a GIT commit' \ @@ -36,11 +36,9 @@ test_expect_success \ git commit -a -m bar ' -test_expect_success \ - 'Assimilate one GIT commit' \ - ' +test_expect_success 'Turn one GIT commit into a patch' ' [ $(stg applied | wc -l) -eq 1 ] && - stg assimilate && + stg repair && [ $(stg applied | wc -l) -eq 2 ] ' @@ -56,11 +54,9 @@ test_expect_success \ git commit -a -m three ' -test_expect_success \ - 'Assimilate three GIT commits' \ - ' +test_expect_success 'Turn three GIT commits into patches' ' [ $(stg applied | wc -l) -eq 2 ] && - stg assimilate && + stg repair && [ $(stg applied | wc -l) -eq 5 ] ' @@ -75,9 +71,9 @@ test_expect_success \ git pull . br ' -test_expect_success 'Assimilate in the presence of a merge commit' ' +test_expect_success 'Repair in the presence of a merge commit' ' [ $(stg applied | wc -l) -eq 5 ] && - stg assimilate && + stg repair && [ $(stg applied | wc -l) -eq 0 ] ' diff --git a/t/t1302-assimilate-interop.sh b/t/t1302-repair-interop.sh similarity index 91% rename from t/t1302-assimilate-interop.sh rename to t/t1302-repair-interop.sh index 31f8b78..82c5ed2 100755 --- a/t/t1302-assimilate-interop.sh +++ b/t/t1302-repair-interop.sh @@ -1,5 +1,5 @@ #!/bin/sh -test_description='Test git/StGit interoperability with "stg assimilate"' +test_description='Test git/StGit interoperability with "stg repair"' . ./test-lib.sh test_expect_success 'Create some git-only history' ' @@ -28,7 +28,7 @@ test_expect_success 'Create five patches' ' test_expect_success 'Pop two patches with git-reset' ' git reset --hard HEAD~2 && ! stg refresh && - stg assimilate && + stg repair && stg refresh && [ "$(echo $(stg applied))" = "p0 p1 p2" ] && [ "$(echo $(stg unapplied))" = "p3 p4" ] @@ -43,7 +43,7 @@ test_expect_success 'Create a new patch' ' test_expect_success 'Go to an unapplied patch with with git-reset' ' git reset --hard $(stg id p3) && ! stg refresh && - stg assimilate && + stg repair && stg refresh && [ "$(echo $(stg applied))" = "p0 p1 p2 p3" ] && [ "$(echo $(stg unapplied))" = "q0 p4" ] @@ -51,7 +51,7 @@ test_expect_success 'Go to an unapplied patch with with git-reset' ' test_expect_success 'Go back to below the stack base with git-reset' ' git reset --hard foo-tag && - stg assimilate && + stg repair && [ "$(echo $(stg applied))" = "" ] && [ "$(echo $(stg unapplied))" = "p0 p1 p2 p3 q0 p4" ] ' -- [mdw]