Skip to main content

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."


πŸ”Ή 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:

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"