The recipe repository from Ruby Habits #2
###First Task: Add a recipe to this repository
####Steps:
-
Clone this repository: in the terminal
git clone [email protected]:RubyHabits/recipes.git recipes
This creates a folder on your computer called recipes -
Pull: in the terminal, in your recipes folder
git pull
Don't forget to go into your recipes folder first! Hint: cd recipes on your terminal -
Put your work into your local folder: Just use any text editor you like and save your file, drag and drop it into your recipes folder on your computer or use the command line to d the same thing.
-
Add: in the terminal, in your recipes folder
git add -A
-
Commit: in the terminal, in your recipes folder
git commit -m "Adds yourrecipe.txt"
-
Push: in the terminal, in your recipes folder
git push