Sha256: 86db189cdf00182e69f0f57336a597aab304585447f1c323c6f6fe882deffce2

Contents?: true

Size: 1.63 KB

Versions: 22

Compression:

Stored size: 1.63 KB

Contents

## Resources

### Git

This repository make use of [Git](http://git-scm.com/) such that you should have
it installed on your working machine: 

       $> apt-get install git-core # On Debian-like systems
	   $> yum install git          # On CentOS-like systems
       $> brew install git         # On Mac OS, using [Homebrew](http://mxcl.github.com/homebrew/)
       $> port install git         # On Mac OS, using MacPort

Consider these resources to become more familiar (if not yet) with Git:

* [Simple Git Guide](http://rogerdudler.github.io/git-guide/)
* [Git book](http://book.git-scm.com/index.html)
* [Github:help](http://help.github.com/mac-set-up-git/)
* [Git reference](http://gitref.org/)

At least, you shall configure the following variables

       $> git config --global user.name "Your Name Comes Here"
       $> git config --global user.email you@yourdomain.example.com
       # configure colors
       $> git config --global color.diff auto
       $> git config --global color.status auto
       $> git config --global color.branch auto

Note that you can create git command aliases in `~/.gitconfig` as follows: 

       [alias]
           up = pull origin
           pu = push origin
           st = status
           df = diff
           ci = commit -s
           br = branch
           w  = whatchanged --abbrev-commit
           ls = ls-files
           gr = log --graph --oneline --decorate
           amend = commit --amend

Consider my personal [`.gitconfig`](https://github.com/Falkor/dotfiles/blob/master/git/.gitconfig) as an example -- if you decide to use it, simply copy it in your home directory and adapt the `[user]` section. 

Version data entries

22 entries across 22 versions & 1 rubygems

Version Path
falkorlib-0.6.2 templates/README/readme_git.erb
falkorlib-0.6.1 templates/README/readme_git.erb
falkorlib-0.6.0 templates/README/readme_git.erb
falkorlib-0.5.9 templates/README/readme_git.erb
falkorlib-0.5.8 templates/README/readme_git.erb
falkorlib-0.5.7 templates/README/readme_git.erb
falkorlib-0.5.6 templates/README/readme_git.erb
falkorlib-0.5.5 templates/README/readme_git.erb
falkorlib-0.5.4 templates/README/readme_git.erb
falkorlib-0.5.3 templates/README/readme_git.erb
falkorlib-0.5.2 templates/README/readme_git.erb
falkorlib-0.5.1 templates/README/readme_git.erb
falkorlib-0.5.0 templates/README/readme_git.erb
falkorlib-0.4.10 templates/README/readme_git.erb
falkorlib-0.4.9 templates/README/readme_git.erb
falkorlib-0.4.8 templates/README/readme_git.erb
falkorlib-0.4.7 templates/README/readme_git.erb
falkorlib-0.4.6 templates/README/readme_git.erb
falkorlib-0.4.5 templates/README/readme_git.erb
falkorlib-0.4.4 templates/README/readme_git.erb