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:…
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:…
git Reference help.github Pro Git (free ebook) GitLab codeschool course for Git Tutorialspoint for Git Egit Icon Decorations
$ 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…