hackforla / ops

A repository for the OPS Community of Practice
https://github.com/orgs/hackforla/projects/73
MIT License
8 stars 7 forks source link

Questions / Answers from ops members #93

Open ExperimentsInHonesty opened 1 year ago

ExperimentsInHonesty commented 1 year ago

Dependency

Overview

If you have questions, put them in this issue so that we can answer them and keep the info around permanently (adding it to wiki, etc.)

Action Items

Resources/Instructions

drakeredwind01 commented 3 months ago

R.E.

chelseybeck commented 3 months ago

@drakeredwind01 the last one would be best

drakeredwind01 commented 3 months ago

Q: should we properly categorize our branches?

my mentor says it might be a good idea to incorporate common practice branch grouping

bugfix/no_destination_for_href
feature/adding_picture_of_a_cute_puppy
release/cute_puppy_update_for_better_retention
hotfix/corrupt_image_breaks_the_site_fix

for example:

git checkout -b feature/36-add-new-iam-user-drakeredwind01
instead of
git checkout -b 36-add-new-iam-user-drakeredwind01

doing this would make finding specific branches much easier as each prefaced catagory would show as another folder with all concerning branches within.

HFLA
├───bugfix
│   ├───css_is_broken_on_home_page
│   └───no_destination_for_href
├───feature
│   └───adding_picture_of_a_cute_puppy
├───release
│   └───cute_puppy_update_for_better_retention
├───hotfix
│   └───corrupt_image_breaks_the_site_fix
├───iam_users
│   └───every_thing_is_on_on_fire_help
└───admin
    └───sigh

can also add features such as admin, iam_users, etc. this is a standard used in most places in accordance with atlassian.com

branch how to incorperate notes
bugfix: [bugfix/] problem that should be fixed that doesn't add any new functionality
Feature [feature/] an attribute or characteristic that adds value to the product.
Release [release/] where the maintainers believe the software is worth trying and using
Hotfix [hotfix/] should never use. needs to be added right away into production
drakeredwind01 commented 3 months ago

Hi, how have you been doing? i'm having trouble starting from the part of:

would you mind guiding me through this challenging part? i'm using windows and pycharm it's fastest to contact me here https://discord.gg/WbcWqVq please use '@drakeredwind01' to notify me

ale210 commented 1 month ago
Question Details Q: should we properly categorize our branches? my mentor says it might be a good idea to incorporate common practice branch grouping ```bash bugfix/no_destination_for_href feature/adding_picture_of_a_cute_puppy release/cute_puppy_update_for_better_retention hotfix/corrupt_image_breaks_the_site_fix ``` for example: ```bash git checkout -b feature/36-add-new-iam-user-drakeredwind01 instead of git checkout -b 36-add-new-iam-user-drakeredwind01 ``` doing this would make finding specific branches much easier as each prefaced catagory would show as another folder with all concerning branches within. ```bash HFLA ├───bugfix │ ├───css_is_broken_on_home_page │ └───no_destination_for_href ├───feature │ └───adding_picture_of_a_cute_puppy ├───release │ └───cute_puppy_update_for_better_retention ├───hotfix │ └───corrupt_image_breaks_the_site_fix ├───iam_users │ └───every_thing_is_on_on_fire_help └───admin └───sigh ``` can also add features such as admin, iam_users, etc. this is a standard used in most places in accordance with [atlassian.com](https://www.atlassian.com/git/tutorials/comparing-workflows/gitflow-workflow) | branch | how to incorperate | notes | |---------|--------------------|----------------------------------------------------------------------| | bugfix: | [bugfix/] | problem that should be fixed that doesn't add any new functionality | | Feature | [feature/] | an attribute or characteristic that adds value to the product. | | Release | [release/] | where the maintainers believe the software is worth trying and using | | Hotfix | [hotfix/] | should never use. needs to be added right away into production |