Git - Init


Git - Init

Balu
Balu Infrastructure Solution Architect | SRE | DevOps Manager | Platform Engineer | Monitoring | CICD | ODD | SQL/NoSQL | ELK | AWS | Jhipster | Microservices | Agile | Scrum
Git - Init

Git Init

git init, to initiate the current directory to connect to the version controlling system or any git server

git init

O/P : Initialized empty Git repository in /home/user/current/directory-test

  • After initializing the repository, it will create the hidden folder in the directory /home/user/current/directory-test.
  • To view hidden fine in direct Ctrl + H
  • Directory file structure looks like this
---
root
    branch/
    config
    description
    HEAD
    hooks/
        applypatch-msg.sample
        commit-msg.sample
        fsmonitor-watchman.sample
        post-update.sample
        pre-applypatch.sample
        pre-commit.sample
        prepare-commit-msg.sample
        pre-push.sample
        pre-rebase.sample
        pre-receive.sample
        update.sample
    info/
        exclude
    objects/
        info/
        pack/
    refs/
        heads/
        tags/

comments powered by Disqus