Difference between revisions of "Git"
From GLMWiki
(→Git Ignore File) |
(→Git Ignore File) |
||
Line 65: | Line 65: | ||
== Git Ignore File == | == Git Ignore File == | ||
− | [[The_Great_GLM_Git_Guide# | + | [[The_Great_GLM_Git_Guide#Git_ignore_file|Git Ignore File Setup]] |
==SSH Keys== | ==SSH Keys== |
Revision as of 10:01, 9 June 2016
Contents
Git Docs
Installation & Initial Setup
Git Installation & Initial Setup
GLM Git Guide
Setup ssh-agent
ssh-agent on windows(git bash)
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
If you’re making signed annotated tags (as discussed in Chapter 2 of Git Pro), setting your GPG signing key as a configuration setting makes things easier. Set your key ID like so:
git config --global user.signingkey <gpg-key-id>
Git New Website Setup Checklist
Git New Website Setup Checklist
Git Flow
Git home config file
~/.gitconfig
[user] name = (your name) email = (your email) [color] diff = always ui = true [core] excludesfile = /home/(your user)/.gitignore_global autocrlf = input sharedRepository = 0664 [alias] ci = commit co = checkout br = branch st = status graph = log --pretty=format:\"%h %s\" --graph [push] default = simple [branch] autosetuprebase = always
Git Ignore File
SSH Keys
Creating your ssh keys (private/public)
Reference
git book online http://git-scm.com/book