Task 3: Starting with Git and Github
Action Plan: "Start by breaking down your seemingly impossible goal into smaller, actionable tasks. Create a detailed plan outlining the steps required to achieve your goal. Identify any potential obstacles or challenges and brainstorm solutions to overcome them."
Affirmations: "I am committed to making the impossible possible and finishing my work. I am capable of overcoming any challenges that come my way. With persistence and determination, I will achieve success."
Task Answer - Video Linkβ
πΉ If you donβt understand the task, watch the video above for the answer.
Taskβ
Step 1: Install Gitβ
Before using Git, you need to install it on your system.
β Download and Install Git:
- Windows: Git for Windows
Verify Installation: Run the following command to check if Git is installed:
git --version
Step 2: Configure Git Before using Git, set up your name and email (this is required for commit tracking).
git config --global user.name "Your Name"
git config --global user.email "[email protected]"
Step 3: Create a GitHub Accountβ
- Go to GitHub and sign up for a free account.
- Once registered, youβre ready to create and manage repositories.
Step 4: Create Your First GitHub Repositoryβ
- Log into GitHub and click on "New Repository".
- Enter a repository name, e.g., my-first-repo.
- Choose Public or Private visibility.
- Select Initialize with README if you want a starting file.
- Click "Create Repository"