Init
In Git, init
is used to initiate the process of creating a repository. When beginning a new project, this is the first step to take in order to track changes to the code throughout all files and folders.
Syntax
git init
Initializing a Git Repository
Step 1: Navigate to the Desired Directory
The init
command initializes a Git repository in the current directory. Prior to using this command, users must take care to navigate to the appropriate directory — this will become the root directory of the repository. The cd
command can be used to navigate the filesystem from the command line:
cd go/to/desired/project/directory
Step 2: Init
In the appropriate directory, initialize a repository to begin tracking changes made to all the files with the following git command:
git init
After the initialization is complete, the following should appear in the command line.
Initialized empty Git repository in /go/to/desired/project/directory/.git/
A new, hidden .git directory is then added alongside the new repository’s root directory. In this case, the root directory is directory
.
All contributors
- Anonymous contributorAnonymous contributor11 total contributions
- christian.dinh2476 total contributions
- Victoria-DR22 total contributions
- Anonymous contributorAnonymous contributor3071 total contributions
- BrandonDusch580 total contributions
- Anonymous contributor
- christian.dinh
- Victoria-DR
- Anonymous contributor
- BrandonDusch
Looking to contribute?
- Learn more about how to get involved.
- Edit this page on GitHub to fix an error or make an improvement.
- Submit feedback to let us know how we can improve Docs.