@@ -54,14 +54,14 @@ These utilities should be migrated to the `/utils/input` folder.
5454
5555### Gather present-state information
5656
57- Primarily, this stage includes loading configuration data and dependency branch
57+ Primarily, this stage includes loading configuration data and upstream branch
5858data. This should perform all the data gathering necessary to be able to perform
5959an automic operation.
6060
6161Some steps that occur in this stage include:
6262- Load configuration
6363- Fetch remote refs
64- - Load data from _ dependency branches
64+ - Load data from _ upstream branches
6565- Ensure the working directory is clean
6666
6767These utilities should be migrated to the ` /utils/loading ` folder.
@@ -103,22 +103,22 @@ module.
103103Under this methodology, the ` git new ` command would have the basic outline:
104104
1051051 . Input validation and normalization
106- - Split dependency branches into array
106+ - Split upstream branches into array
107107 - Ensure branch names are valid (using ` git check-ref-format ` )
1081082 . Gather present-state information
109109 - Fetch from the remote
110- - Find dependency branches' configurations (recursively)
110+ - Find upstream branches' configurations (recursively)
1111113 . Build initial action list, which would include
112- - Resolve commit hash for initial dependency branch
113- - Merge in each other dependency (if any) - if these merges fail, this may abort the ` new `
112+ - Resolve commit hash for initial upstream branch
113+ - Merge in each other upstream (if any) - if these merges fail, this may abort the ` new `
114114 - Push the new branch based on the final hash
115115 - Checkout the branch locally
116- - Set dependency branches
116+ - Set upstream branches
1171174 . Resolve local actions
118118 - ` Invoke-LocalAction `
119- - Create commit to track dependency branches in ` _dependency `
119+ - Create commit to track upstream branches in ` _upstream `
120120 - Merge each branch into the previous hash, tracking the resulting hash
1211215 . Finalize actions
122122 - ` Invoke-FinalizeAction `
123- - A single ` git push ` would set ` _dependency ` and create the new branch
124- - Checkout the new branch
123+ - A single ` git push ` would set ` _upstream ` and create the new branch
124+ - Checkout the new branch
0 commit comments