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

Fixed more grammar #6

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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
10 changes: 5 additions & 5 deletions posts/git.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@ _Back to [Index](../index.html#-markdown-markdown-html-)_
Collaborating codes can be hard, and while using flashdrives to
copy codes can work, there are lots of concerns, like: what if
we accidentally overwrite someone else's work? What if our work
produces bugs we don't realize until later on? Can we rework our
produce bugs we don't realize until later on? Can we rework our
steps to fix the bugs?

This section serves as a primer to Git, what is it, how to use it,
This section serves as a primer to Git, what it is, how it's used,
when and why should you use Git.

Even as a solo developer, you should still consider working with Git
Expand All @@ -25,11 +25,11 @@ When you work alone, writing software, all you need to do is write the code,
compile it, and run it, and you're set. But what if you are working in a team?
How do you share what you're typing with others? Do you send your code by email?
Cloud storage? What if there's a mistake that happens later on in the project's lifespan,
can we figure out what introduces the bug, and even who to _blame_?
can we figure out what introduces the bug, or even who to _blame_?

As your project scales, things are getting more difficult. You now start working
As your project scales, things get more difficult. You now start working
in a team of five people, per se. Each of them work on different parts of the project.
For instance, one person could person on one particular feature of an app, corresponding
For instance, one person could work on one particular feature of an app, corresponding
to several files, while the others could be working on different files. Sometimes, several
people could be editing different or even same part of a single file, like the main page of
a mobile app, or the css of a website.
Expand Down