You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
So you are well on your way to becoming a full fledged programmer, and the next step is to learn git. This Beginner's Guide to Git will help you on your journey. In this guide you will learn the commands to initialize git, add changes to your files using git, commit those changes, and a few other helpful tricks. You will also learn the how and why of these commands and how git will help you and your teammates to create awesome software.
What is Git?
According to Wikipedia,
Git is a distributed version-control system for tracking changes in source code during software development. It is designed for coordinating work among programmers, but it can be used to track changes in any set of files. Its goals include speed, data integrity, and support for distributed, non-linear workflows.
The assignments listed here should take you approximately 25 total minutes.
To start this assignment, click the button in the upper right-hand corner that says Fork. This is now your copy of the document. Click the Edit button when you're ready to start adding your answers. To save your work, click the green button in the bottom right-hand corner. You can always come back and re-edit your gist.
1. Creating Files and Directories (10 min)
Need help? You can go back to the files/directories portion of the lesson here.
The readings and responses listed here should take you approximately 60 minutes.
To start this assignment, click the button in the upper right-hand corner that says Fork. This is now your copy of this document. Click the Edit button when you're ready to start adding your answers. To save your work, click the green button in the bottom right-hand corner. You can always come back and re-edit your gist.
The purpose of HTML code is to tell your web browser the structure of the web page. HTML code does this with elements, comprised of opening and closing tags, that represent certain features and structure to the webpage. It is the framework upon which all website are built upon.
What is the difference between an element and a tag?
The assignments listed here should take you approximately 2 hours.
To start this assignment, click the button in the upper right-hand corner that says Fork. This is now your copy of the document. Click the Edit button when you're ready to start adding your answers. To save your work, click the green button in the bottom right-hand corner. You can always come back and re-edit your gist.
1. Documentation and Googling (60 min)
Documentation of a langauge, framework, or tool is the information that describes its functionality. For this part of the practice tasks, you're going to practice digging into documentation and other reference material.