My Git learning notes

Git Basic Git Help $ git help $ git help config Setting up git $ git config –global user.name “xxx” $ git config –global user.email “xxx@xxx.com” $ git config –global color.ui true Starting a Repo $ git init Work flow:…

Useful links for Git

git Reference help.github Pro Git (free ebook) GitLab codeschool course for Git Tutorialspoint for Git Egit Icon Decorations

Useful Git Commands

$ git init #initialize an empty Git repoistory $ git status #see the current state of the project untracked file: it is a new file and not be tracked by Git staged:Files are ready to be committed. unstaged: Files with changes that…