Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
tylermcginnis committed Dec 9, 2014
1 parent 10c0973 commit 230542e
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,13 @@ learn-git
* The last mini-project you'll be mimicking the steps you'll take when it's group project perioid. You'll fork your groups repo, link your computer with your fork, push changes to your github, then make a 'Pull Request' into your groups repo.

##Mini-Project 1: Personal Project
### Step 1:
### Step 1: Create a Repository on Github
* Let's jump ahead a month or two and pretend like we just got to personal project periods. Because you're not an idiot, you're going to be pushing your code up to github frequently. In order to do that, you first need to create a repository on github to push to. Head over to your github account then in the top right hand corner click the '+' button and click 'new repository'. Enter the name of your repository then click 'Create Repository'. This repository is where your code for this project will now live.
### Step 2: Set up the Upstream
* Once you create your repository, you'll need to connect that repository with your code on your computer.
* Create a folder called 'myProject' then inside that folder create a file called 'myName.js'. Add your name to that file and then save it.
* Now in your terminal navigate to your 'myProject' folder. Once inside that folder, type ```git init```. You've just told your computer that you want git to watch the 'myProject' folder and keep track of any changes - basically making it so you can now run git commands inside of this folder.
* Now that you've initialzied your 'myProject' folder, we need to tell your computer where the location of your github repository is. To do this you create what is called an 'upstream'.

##Mini-Project 2: DevMountain Project
### Step 1:
Expand Down

0 comments on commit 230542e

Please sign in to comment.