diff --git a/README.md b/README.md index 3a87181..bf378df 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # Practice with git and GitHub -\[Your Step 3 Edit Here\] +\[두번째 저장용이다. 풀리퀘스트가 깃 허브에 뜨나\] This is a very simple repository for practicing with git and GitHub. git is a utility for *version control*. When a body of code is tracked with git, it is easy to see how the software has evolved over time, to roll back changes when needed, and to incorporate modifications by multiple collaborators. In this activity, we're going to focus on core git workflows for single-person projects. We may do a follow-up activity later in the quarter on workflows for collaborative projects. @@ -13,7 +13,7 @@ GitHub is a free online code hosting service that runs using git. We'll use git You should already have made an account on [GitHub](https://github.com/) and downloaded [GitHub Desktop](https://desktop.github.com/). ## 1. Fork - +두번째 저장용. *Forking* refers to the act of creating your personal copy of an existing body of code. You can then modify your *fork* as you wish. Forking is a great way to make use of templates and other resources upon which you can build. For example, you'll soon fork a template for your website, which you'll then populate and customize. Go ahead and fork this repo, using the "Fork" button at in the top-right corner. @@ -21,6 +21,7 @@ Go ahead and fork this repo, using the "Fork" button at in the top-right corner. Check out your fork! At the moment, it's just a copy of the [original repository](https://github.com/PIC16B/git-practice). ## 2. Clone +브렌치 테스트용이다. You now have a copy of this repository on GitHub. But how can you make changes? It's possible to manually edit files on GitHub, but this is not at all convenient. Instead, you should create a *local clone* of the repository. To do this, hit the big green button and choose Open in GitHub Desktop. Choose to create the repo in a location where you'll easily remember it. @@ -28,10 +29,10 @@ You now have a copy of this repository on GitHub. But how can you make changes? In your local clone of the repository, open this file (`README.md`). At the top of the file, underneath the title, type -> I'm \[your name\] and I edited this file! +> I'm \[Ninja\] and I edited this file! ## 4. Add and Commit - +stage를 켜야 커밋을 할 수 있다. Now go over to GitHub Desktop. Observe that the file `README.md` is now listed as changed. If there isn't already a blue checkmark beside the file, click the box to make one. Then, add a *commit message* in the box below. The commit message should be a short description of what you achieved with your code modification. For example, a good commit message here might be "Add name to README.md." Once you've entered the commit message, click the big blue Commit button.