Skip to content

# 1. Create a new folder mkdir my-first-repo cd my-first-repo # 2. Initialize git git init # 3. Create a file echo "Hello, world!" > README.md # 4. Add the file to staging git add README.md # 5. Commit it git commit -m "My first commit" # 6. Connect to your GitHub repo git remote add origin https://github.com/YOUR_USERNAME/my-first-repo.git git branch -M main git push -u origin main #35

@Mehedi53781

Description

@Mehedi53781
No description provided.

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions