Difference between revisions of "Git"
From GLMWiki
(→Git for the first time) |
(→Git Ignore File) |
||
Line 14: | Line 14: | ||
== Git Ignore File == | == Git Ignore File == | ||
+ | create a file called .gitignore_global in you home directory | ||
<pre> | <pre> | ||
+ | # OS generated files # | ||
+ | ###################### | ||
+ | .DS_Store* | ||
+ | ehthumbs.db | ||
+ | Icon? | ||
+ | Thumbs.db | ||
+ | ._* | ||
+ | *.swp | ||
+ | |||
+ | # Gaslight Media Application specific # | ||
+ | # files that are updated on server # | ||
+ | ####################################### | ||
iconCache/ | iconCache/ | ||
uploads/ | uploads/ |
Revision as of 16:38, 30 June 2014
Contents
Git Docs
Install
Git for the first time
Setting up Git for the first time
Git Ignore File
create a file called .gitignore_global in you home directory
# OS generated files # ###################### .DS_Store* ehthumbs.db Icon? Thumbs.db ._* *.swp # Gaslight Media Application specific # # files that are updated on server # ####################################### iconCache/ uploads/ cache/ compiled/ compile/ original/ resized/ midsized/ thumb/ thumbs/ ht_images/ photo-large/ photo-small/ prototype/ weather-feed.xml php.error reports/ editimagesworkwith/ editimagesoriginal/ editedImages/ editimagespng/ .buildpath .settings .project .svn nbproject
SSH Keys
Creating your ssh keys (private/public)
Git-Svn
Checking out a site from svn with git (limit git) git svn http://git-scm.com/book/ch8-1.html
Gitolite
gpg signing
How to sign your commit or tags
Reference
git book online http://git-scm.com/book