Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add contributing md 120 #126

Merged
merged 11 commits into from
Apr 18, 2024

Conversation

awlFCCamp
Copy link
Member

@awlFCCamp awlFCCamp commented Mar 27, 2024

Fixes #120
Added a contributing markdown file to provide clear instructions for new contributors. Added instructions for making contributions to the repo: forking repo, cloning repo, creating a new branch, adding committing, pushing changes, and creating a pull request.

@awlFCCamp
Copy link
Member Author

@chelseybeck @nyarly Please take a look at it, and make any suggestions for revision. Thank you

CONTRIBUTING.md Outdated

### **Working on an issue**

For each issue you address, create a new branch. Working on topic branches ensures that your main branch(named `master`)remains untouched and makes it easier to synchronize your fork with the main project.
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
For each issue you address, create a new branch. Working on topic branches ensures that your main branch(named `master`)remains untouched and makes it easier to synchronize your fork with the main project.
For each issue you address, create a new branch. Working on topic branches ensures that your main branch(named `main`)remains untouched and makes it easier to synchronize your fork with the main project.

CONTRIBUTING.md Outdated

For each issue you address, create a new branch. Working on topic branches ensures that your main branch(named `master`)remains untouched and makes it easier to synchronize your fork with the main project.

#### **Working on an issue (1): Verify current branch is `master`**
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
#### **Working on an issue (1): Verify current branch is `master`**
#### **Working on an issue (1): Verify current branch is `main`**

CONTRIBUTING.md Outdated

#### **Working on an issue (1): Verify current branch is `master`**

first make sure you are on the master branch.
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
first make sure you are on the master branch.
first make sure you are on the main branch.

CONTRIBUTING.md Outdated
first make sure you are on the master branch.

```bash
git checkout master
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
git checkout master
git checkout main

CONTRIBUTING.md Outdated
git checkout master
```

Update your master branch with the latest changes
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
Update your master branch with the latest changes
Update your main branch with the latest changes

CONTRIBUTING.md Outdated
Update your master branch with the latest changes

```
git pull upstream master
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
git pull upstream master
git pull upstream main

CONTRIBUTING.md Outdated
After committing your changes locally, you can use below commands to push your committed changes to a remote repository, making them accessible to others working on the same projects.

```bash
git push --set-upstream add-contributing-md-120
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
git push --set-upstream add-contributing-md-120
git push --set-upstream origin add-contributing-md-120

@chelseybeck
Copy link
Member

@awlFCCamp I recommended a few changes. GitHub used to default to naming branches 'master', but switched to 'main'. Newer repos (like ours) use 'main'. Other than that, this looks great! Thanks for working on it 😄

@awlFCCamp
Copy link
Member Author

@chelseybeck I made changes. Please take a look at it, and make any suggestions for revision. Thank you.

Copy link
Member

@abbyz123 abbyz123 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Looks good to me. Thank you so much for your work!

@chelseybeck chelseybeck merged commit 712b3e8 into hackforla:master Apr 18, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Add a CONTRIBUTING.md to the Ops repo
3 participants