Escape a git mess, step-by-step

http://justinhileman.info/article/git-pretty/

Removing unwanted files from Git history

A simpler, faster alternative to git-filter-branch for deleting big files and removing passwords from Git history. https://rtyley.github.io/bfg-repo-cleaner/

Adding Remote Repositories

http://git-scm.com/book/en/Git-Basics-Working-with-Remotes $ git remote add pb git://github.com/paulboone/ticgit.git $ git remote -v origin git://github.com/schacon/ticgit.git pb git://github.com/paulboone/ticgit.git $ git fetch pb

How to fix stale git branch -r (delete phantom git branches)?

When git remote branch is deleted, but still appears in ‘branch -a’, you should: git remote show origin git branch -d branch-name git remote prune origin git gc --prune=now

An abstraction layer for git written in PHP

http://gitelephant.cypresslab.net/

Git-Flow

http://nvie.com/posts/a-successful-git-branching-model/ https://github.com/nvie/gitflow http://danielkummer.github.io/git-flow-cheatsheet/ http://horusiath.blogspot.com/2013/03/ustrukturyzowane-repozytorium-git-flow.html http://www.slideshare.net/mediacurrent/git-flow-for-daily-use-24681199 http://jeffkreeftmeijer.com/2010/why-arent-you-using-git-flow/ http://yakiloo.com/getting-started-git-flow/ https://github.com/OpherV/gitflow4idea http://plugins.jetbrains.com/plugin/7315

Code School: Git

http://try.github.io/levels/1/challenges/1 http://gitreal.codeschool.com/levels/1 http://gitreal2.codeschool.com/levels/1

Git concepts simplified

http://gitolite.com/gcs/

A successful Git branching model

http://nvie.com/posts/a-successful-git-branching-model/

Git How To

Git How To — is a guided tour that walks through the fundamentals of Git, inspired by the premise that to know a thing is to do it.