Difference between revisions of "Git"

from HTYP, the free directory anyone can edit if they can prove to me that they're not a spambot
Jump to navigation Jump to search
(Stack Overflow link)
(more stuff, as I continue to read the online book)
Line 7: Line 7:
 
==About==
 
==About==
 
[[Git]] is a [[version control system]] based on a powerful distributed model.{{seed}}
 
[[Git]] is a [[version control system]] based on a powerful distributed model.{{seed}}
 +
===Commands===
 +
* git config --global {{arg|param_name}} {{arg|param_value}}
 +
** '''param_name''': user.name, user.email, core.editor
 +
* git config --list
 +
** ''lists current configuration parameters''
 +
* git config {{arg|param_name}}
 +
** ''lists the current value for the given parameter
 
==Links==
 
==Links==
 
===Reference===
 
===Reference===
 
* {{wikipedia|Git (software)}}
 
* {{wikipedia|Git (software)}}
 +
* {{l/manpage|git|manpage}}
 +
===Projects===
 +
* [[GitHub]]: free web-based git repository for open-source projects
 
===Online Books===
 
===Online Books===
 
* ''[http://git-scm.com/book Pro Git]''
 
* ''[http://git-scm.com/book Pro Git]''
 
** [http://git-scm.com/book/en/Getting-Started-Git-Basics 1.3 Getting Started - Git Basics]
 
** [http://git-scm.com/book/en/Getting-Started-Git-Basics 1.3 Getting Started - Git Basics]
 +
** [http://git-scm.com/book/en/Getting-Started-Getting-Help 1.6 Getting Started - Getting Help]
 
===Online Courses===
 
===Online Courses===
 
* [http://www.codeschool.com/courses/try-git Learn to use Git] @ [[Code School]] (free registration required)
 
* [http://www.codeschool.com/courses/try-git Learn to use Git] @ [[Code School]] (free registration required)
 
===Discussion===
 
===Discussion===
 
* [http://stackoverflow.com/questions/315911/git-for-beginners-the-definitive-practical-guide beginner's practical guide to Git] @ [[Stack Overflow]]
 
* [http://stackoverflow.com/questions/315911/git-for-beginners-the-definitive-practical-guide beginner's practical guide to Git] @ [[Stack Overflow]]

Revision as of 17:40, 16 August 2013

About

Git is a version control system based on a powerful distributed model.

This page is a seed article. You can help HTYP water it: make a request to expand a given page and/or donate to help give us more writing-hours!

Commands

  • git config --global <param_name> <param_value>
    • param_name: user.name, user.email, core.editor
  • git config --list
    • lists current configuration parameters
  • git config <param_name>
    • lists the current value for the given parameter

Links

Reference

Projects

  • GitHub: free web-based git repository for open-source projects

Online Books

Online Courses

Discussion