Difference between revisions of "Git"
Jump to navigation
Jump to search
Line 27: | Line 27: | ||
=== Submodules === | === Submodules === | ||
− | * http://chrisjean.com/2009/04/20/git-submodules-adding-using-removing-and-updating/ | + | |
+ | git submodule add git@mygithost:project goes/here --branch x.y | ||
+ | |||
+ | * [http://randyfay.com/node/115 Drupal Deployment with Git Submodules] | ||
+ | * [http://chrisjean.com/2009/04/20/git-submodules-adding-using-removing-and-updating/ Git Submodules: Adding, Using, Removing, Updating] | ||
=== Repos === | === Repos === |
Revision as of 19:15, 5 January 2012
Manuals
man git-push
Guides
- Understanding Git Conceptually
- pushing and pulling
- Understanding the Git Workflow
- A successful Git branching model
Commands
git repo-config core.sharedRepository true Allow access by multiple users
Submodules
git submodule add git@mygithost:project goes/here --branch x.y
Repos
Git used for private repo, with Gitweb for easy overview.
For a public setup, a hosting system with access control like gitosis or gitolite is required, or for public read only, git-daemon would do.