Replies: 1 comment 2 replies
-
Right now, the most up-to-date code I have been working with is in https://github.com/deepskies/SimSZ/tree/dev-massdist. Any code from other branches in SimSZ is likely stale. The students are working with the code from dev-massdist at the moment. |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
For background, here are few standards for most code repositories
main
: only used as the branch through which to release the code. That is, never commit/push code to main.development
: most of the time, branches should come off this branch. We're in a slightly more complex situation, and we should try to clean up our branches so that we're usually branching off development.dev-pipeline
: I'm reorganizing the repository and filling in the missing elements of the workflow with this branch.We have multiple branches that have come from other branches, which may soon be stale.
For now, everyone should only commit/push to the branches they're working on. Please do not push to
main
,development
, ordev-pipeline
.Beta Was this translation helpful? Give feedback.
All reactions