Changes between Initial Version and Version 1 of runbooks/maintenance


Ignore:
Timestamp:
04/09/22 23:52:53 (3 years ago)
Author:
Jonathan Neufeld
Comment:

Introduction of Maintenance page, just has info for updating Git submodules at this point in time.

Legend:

Unmodified
Added
Removed
Modified
  • runbooks/maintenance

    v1 v1  
     1= Code Repository
     2Periodically it is necessary to update the Git repository and dependencies, doing this using Git is beyond the scope of this maintenance manual (see also [https://git-scm.com/docs/git-pull git pull] and [https://git-scm.com/docs/git-checkout git checkout] for the two most commonly used Git methods for updating / switching code branches).  However, it's a bit more complex to update the submodules.  After code in the trunk has been updated, run the following command from the root path of your code repository to replicate the code sync to submodules:
     3
     4{{{#!sh
     5git submodule update --remote --recursive
     6}}}