Skip to content

Latest commit

 

History

History

README.md

Early configurations

  username
    git config --global user.name "your-username"
  email
    git config --global user.email "your-email"

Count file changes

git status | grep 'modified:' | wc -l

Three stages

  • (work directory | modifying files)
  • (staged area | git add)
  • (local repository | git commit)

Topics

See documentation

view...