Back to Browse

Git & GitHub Bangla tutorial 2024 || GitHub Account Setup and Git Configuration

339 views
Feb 16, 2024
30:41

Git & GitHub Bangla tutorial 2024 || GitHub Account Setup and Git Configuration. Step 01: ======= ✅ Creating Your GitHub Account: ======= Begin by visiting the GitHub website. Click on the “Sign Up” button. Provide your email address, choose a strong password, and complete the registration process. Step 02: ======= ✅ Setting Up Git on Your Computer: ======= Install Git on your local machine. Open a terminal or command prompt and verify that Git is installed by typing git --version. Configure Git with your name and email using the following commands: git config --global user.name "Your Name" git config --global user.email "[email protected]" Step 03: ======= ✅ Creating Your First Repository: ======= Log in to your GitHub account. Click on the “+” icon in the top right corner and select “New repository.” Follow the prompts to create a new repository with a name, description, and optional README file. Step 04: ======= ✅ Making Changes and Committing: ======= Create or modify files within your local repository. Use git add filename to stage changes. Commit your changes with a descriptive message using: git commit -m "Your commit message" Step 04: ======= ✅ Pushing Changes to GitHub: ======= Push your committed changes to the remote repository: git push origin main

Download

0 formats

No download links available.

Git & GitHub Bangla tutorial 2024 || GitHub Account Setup and Git Configuration | NatokHD