/stdhome

To get this branch, use:
bzr branch http://bzr.ed.am/stdhome

« back to all changes in this revision

Viewing changes to lib/stdhome/program.py

  • Committer: Tim Marston
  • Date: 2021-07-05 20:27:11 UTC
  • Revision ID: tim@ed.am-20210705202711-vklvsctrh5yhgjj7
added staging commands; updated command helps

Show diffs side-by-side

added added

removed removed

72
72
                print("  stage-add     add (but don't commit) files/changes to local repository")
73
73
#               print("  stage-remove  delete *but don't comit) files from the local repository")
74
74
                print("  stage-revert  revert changes in the local repository")
75
 
                print("  stage-status  show status of local repository")
 
75
#               print("  stage-status  show status of local repository")
76
76
#               print("  stage-diff    shows changes in local repository")
77
77
                print("  stage-commit  commit changes in the local repository")
78
78
                print()
120
120
                        'st': 'status',
121
121
                        'co': 'init',
122
122
                        'ci': 'add',
123
 
                        'stst': 'stage-status',
124
 
                        'stadd': 'stage-add',
125
 
                        'strm': 'stage-remove',
126
 
                        'stci': 'stage-commit',
127
123
                }.get( command, False )
128
124
                if alias: return alias
129
125