This repository has been archived by the owner on Jun 2, 2023. It is now read-only.
Git workflow for editing pipeline more cleanly #91
Locked
galengorski
started this conversation in
General
Replies: 1 comment
-
Works for me! Thanks for writing this up @galengorski |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
This is a generalized workflow for editing different parts of the pipeline more cleanly so that we can try to avoid multiple people working on the same part of the project. Also it's a place where I can put these git commands so I don't forget them.
03b_model/src/run_model.py
on a branch calledmodel_edits
and find that a change to01_fetch/src/fetch_usgs_nwis.py
is requiredmodel_edits
commit changes torun_model.py
fetch_usgs_nwis.py
usinggit checkout -b fetch_changes
push upstream fetch_changes
creating new branch in remote repogit checkout main
git pull upstream main
model_edits
branchgit merge main -m "merge small change to fetch nwis"
Beta Was this translation helpful? Give feedback.
All reactions