Difference between revisions of "Git"

From GLMWiki
Jump to: navigation, search
(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

Git

Git Docs

Git Pro Book

Git Tutorial

Git Flow Workflow

Install

Installing Git

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

Creating a new Git repo

gpg signing

How to sign your commit or tags

Reference

git book online http://git-scm.com/book