Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 7 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,16 +18,15 @@ A repo to play with the common git operations in and learn how to get working wi
# FILL THINGS OUT BELOW THIS LINE AND DO IT IN MARKDOWN

## Working definition of Git and what it's done for
Git is a free and open source distributed version control system designed to handle every projects
Git is used to track changes to code between the developers of a project.

## What do you think the top 3 reasons to use GitHub / GitLab are?
1. Version control
2. Collaborate
3. Code review
1. Collaboration
2. Faster changes to code (faster development)
3. Organization

## What is a Pull Request?
Pull requests let you tell others about changes you've pushed to a branch in a repository

a pull request lets other users know that youve made changes and what those changes are.
A PR is what a developer does when they are ready to push there changes to the master branch. He/she is requesting for their changes to be reviewed by other developers in the project. If the PR is accepted, the changes will be merged. If not, the developer can address comments, make the proper changes, and request another PR.

## Links to relevent Github / git tutorials
- [Github](https://github.com/)
Expand All @@ -37,8 +36,8 @@ a pull request lets other users know that youve made changes and what those chan
- https://www.youtube.com/watch?v=SWYqp7iY_Tc
- https://product.hubspot.com/blog/git-and-github-tutorial-for-beginners


### Change this image to be something else with different alt data
You can also do images like the one just below here using the !
![Patrick](https://media.giphy.com/media/oyQ9vnvVvPNES3HDko/giphy.gif)
![Oh Spongebob](https://media.giphy.com/media/HmO7FZjok6mhW/giphy.gif).
![Falling](https://media.giphy.com/media/cHFdCVLqWhOJW/source.gif).
28 changes: 19 additions & 9 deletions Reflection.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,19 @@
# My Reflection / Blog
Use this file to submit your blog post to your github account / repo. In it, include some markdown to practice, especially a link to your video.
*Screencast submission* - [YouTube video by HAXcms core contributor Michael Potter](https://www.youtube.com/watch?v=5aPae031TxM&list=PLJQupiji7J5cGYiOflGYFwXSEoHMoowkP&index=17&t=0s)
Here's a reminder of how you do the link above as code.
```markdown
*Screencast submission* - [YouTube video by HAXcms core contributor Michael Potter](https://www.youtube.com/watch?v=5aPae031TxM&list=PLJQupiji7J5cGYiOflGYFwXSEoHMoowkP&index=17&t=0s)
```

Good luck!
# My Reflection / Blog (Pull Requests & Gitflow)
---
This week we talked about Gitflow, which is an extremely important topic in software development and definitely a popular one topday. I was fortunate to practice Gitflow over this past summer during an internship I had but we used a different product suite (not GitHub). The procedures were very similar to the ones used within GitHubs web application.

Here is a link I found helpful relating to those subjects: https://blog.axosoft.com/pull-requests-gitflow/

And below is the link to my video which does a **decent** job at explaining those subjects:
*Pull Requests & Gitflow* - [Witsapro](https://youtu.be/DwlYYVEVxQE)

## Markdown, what is it?
---
Markdown is a text-to-html lightweight language that allows extremly easy conversion of plain text to html. By using special characters a non-programmer (or programmer) can easily generate a fully marked up page without writing HTML. Instead, like I am doing right now, they can simply write plain text and then by use of a few special characters, have that text fully marked up.

Below is a list of some things that I enjoy about Markdown, while using a markdown to list them
1. Very easy to use
2. Very easy to understand
3. Very easy to teach or inform others about

I found a Markdown Cheat Sheet via this link: https://www.markdownguide.org/cheat-sheet/