GitHub - Activity
Instructions:
Using a version control software is a vital part of every devlopers workflow. Complete the steps from the GitHub lesson again to make sure you completely understand them before we move on.
- Create a new repository
- Copy the link
- In terminal,
cd
into the directory where you want your repo to live - Clone the repo using
git clone <repo name>
cd
into the repo- Add a file
- Stage the changes using
git add -A
- Commit the changes using
git commit -m "some message"
- Push the changes using
git push origin master
Challenge:
Figure out how to pull code from the remote repository back to your computer.