Skip to content

Latest commit

 

History

History
31 lines (20 loc) · 986 Bytes

getting_started.md

File metadata and controls

31 lines (20 loc) · 986 Bytes

Getting Started

Joseph P. Vantassel, The University of Texas at Austin

License

Installing Git

Content forthcoming.

Setup and Configuration

git --version                               # Determine version number
git config --global user.name John Doe      # Set up configuration with name
git config --global user.email jd@mail.com  # Set up configuration with email
git config --list                           # Confirm and view changes

Getting-Help

git help <verb>                             # For example: git help config
git <verb> --help                           # For example: git config --help

Sources

Git Tutorial from Code Academy

Git Tutorial for Beginners: Command-Line Fundementals