About 400,000 results
Open links in new tab
  1. git init: Set Up Your Git Repo | Atlassian Git Tutorial

    This resource will walk you through initializing a Git repository for a new or existing project. Included below are workflow examples of repositories both created locally and cloned from …

  2. Git- Setting up a Repository - GeeksforGeeks

    Jul 11, 2025 · Whether you are working on a personal project or collaborating with a team, setting up a Git repository is the first step to using Git’s powerful features. This article will guide you …

  3. Git - Getting a Git Repository

    By the end of the chapter, you should be able to configure and initialize a repository, begin and stop tracking files, and stage and commit changes.

  4. Creating a new repository - GitHub Docs

    Type a name for your repository (maximum 100 characters), and an optional description. Choose a repository visibility. For more information, see About repositories. If you're not using a …

  5. How to Create a New Repository in Git

    Learn how to create new Git repositories and clone existing ones. Start new coding projects or contribute to existing ones with Git.

  6. Git Init: How to Initialize and Set Up a Git Repository

    Mar 17, 2025 · Learn how to set up a Git repository with git init, connect to a remote, configure settings, and troubleshoot common issues—all in one beginner-friendly guide.

  7. How to Create a New Repository in Git? - Life in Coding

    A Git repository, or “repo,” stores your project’s code and its entire version history, enabling you to manage code changes, collaborate with team members, and keep a structured workflow. In …

  8. Mastering Git: How to Add New Repo Like a Pro

    To add a new repository to Git, you can initialize it in a directory using the command `git init`, which creates a new Git repository there. What is a Git Repository? A Git repository is a …

  9. Step-by-Step Git Commands for First-Time Repo ... - DEV …

    Apr 23, 2025 · 🚀 Step-by-Step Git Commands for First-Time Repo Setup (with GitHub) Creates a new local Git repository in your current directory (e.g., 24MCR001). Stages 24MCR050.txt to …

  10. Git Guides - git init · GitHub

    To initialize a repository, Git creates a hidden directory called .git. That directory stores all of the objects and refs that Git uses and creates as a part of your project's history.