Git is the backbone of modern software development, allowing developers to track changes, collaborate on projects, and manage code versions efficiently. If you are just starting your coding journey, setting up Git is your first major milestone.
Based on the AnyTime Class tutorial, here is a comprehensive guide to getting Git up and running on your Windows machine.
Phase 1: Downloading the Git Installer
Before you can use Git commands, you need the software installed on your system.
- Search: Go to Google and search for “Git” or “Git Bash.”
- Official Website: Navigate to the official Git website at git-scm.com.
- Download: Look for the “Download for Windows” section. The video demonstrates using the 64-bit Git for Windows Setup, which is standard for most modern computers.
Phase 2: The Installation Wizard
Once the setup file (.exe) is downloaded, open it to begin the installation process.
- Licensing: Click “Next” to accept the GNU General Public License.
- Default Settings: For most users, especially beginners, the default settings are perfectly fine. You can simply click “Next” through the various configuration screens (such as component selection and folder paths).
- Choosing an Editor: Git will ask which text editor you’d like to use by default (like Vim, Notepad++, or VS Code). While the video mentions Vim as the default, you can choose whichever you are comfortable with.
- Finalizing: Click “Install” and wait for the files to extract. Once finished, you can uncheck “View Release Notes” and click “Finish.”
Phase 3: Verifying the Installation
You need to ensure that Windows recognizes Git as a valid command.
- Open Terminal: Open your Command Prompt (CMD) or the newly installed Git Bash.
- Run Version Check: Type the following command and press Enter:
git --versionIf you see a response likegit version 2.x.x, your installation was successful!
Phase 4: Global Configuration (The Identity Setup)
Git needs to know who is making changes to the code. This is a one-time setup that associates your name and email with your “commits.”
- Set Your Name: Run this command (replacing “Your Name” with your actual name):
git config --global user.name "Your Name" - Set Your Email: Run this command (using the email you use for GitHub):
git config --global user.email "your-email@example.com" - Verify Settings: To see all your current configurations and confirm they are saved, type:
git config --list
Conclusion
Congratulations! You have successfully installed Git and configured your identity. You are now ready to start tracking your code and collaborating with developers worldwide.