Tumblelog by Soup.io
Newer posts are loading.
You are at the newest post.
Click here to check if anything new just came in.

May 28 2010

netzrauschen

Remove Deleted Files From Git [bash] [scm] [git]

# Option A
for i in `git status | grep deleted | awk '{print $3}'`; do git rm $i; done

# Option B (very clean)
$ git rm $(git ls-files -d)
Tags: git snippet

October 02 2009

netzrauschen

schacon's git-lighthouse at master - GitHub

A tool to help work with git projects that accept patches from Lighthouse
Tags: git lighthouse

September 18 2009

netzrauschen

Resolving a Git conflict with binary files

Resolving a Git conflict with binary files
Tags: git binary merge

September 03 2009

netzrauschen

eigenclass - gibak (backup tool using Git)

gibak is a backup tool based on git. Since gibak builds upon the infrastructure offered by Git, it shares its main strengths
netzrauschen

Pro Git

Easy reading book with nice visualizations that is also translated to other languages, including german
Tags: git reference
netzrauschen

Git Magic

Git is a version control Swiss army knife. A reliable versatile multipurpose revision control tool whose extraordinary flexibility makes it tricky to learn, let alone master. Rather than go into details, we provide rough instructions for particular effects. After repeated use, gradually you will understand how each trick works, and how to tailor the recipes for your needs.

August 25 2009

netzrauschen

Git Resources

Git, though remarkably handy and powerful, is also remarkably hard to use sometimes. Though you can learn the basics easily enough, it can be really tough to dig yourself out of certain corners if you don’t understand what’s going on under the covers.

July 08 2009

netzrauschen

cheat git

Simple plain-text collection of useful git commands.
netzrauschen

scie.nti.st » Hosting Git repositories, The Easy (and Secure) Way

I have been asked more and more these days, "How do I host a Git repository?" Usually it is assumed that some access control beyond simply read-only is involved (some users have commit rights). With access control comes issues of security, and that's a whole other bag of cats. This post is about presenting an answer to this question, without the fuss.

July 03 2009

netzrauschen

Git User's Manual (for version 1.5.3 or newer)

Git is a fast distributed revision control system.
netzrauschen

git[-svn] in 30 minutes

… or something like that… I planned to write a short note about how to start with using git-svn so I can provide a pointer to some of my colleagues. It turned out that git has too many nice features that you should be aware of. :) Hopefully my notes (now being a reference for myself as well, thx to gebi for all the help and feedback) are useful anyway. If you think something (more or less essential, or at least something most of us should be aware of) is missing: please feel free to mention that in the comment section of my blog entry, thanks.
Tags: git tutorial

June 28 2009

netzrauschen

Effectively Using Git With Subversion | Viget Extend

The integration between git and Subversion (git-svn) is so well done that several of us have been using git as our interface to all our Subversion repositories. Doing this is fairly simple, but there are some interesting tricks, and so I thought I would share a day in the Viget life with git-svn.
netzrauschen

June 26 2009

netzrauschen

Use Git With Subversion

The tool git-svn is a Perl script that allows working on a Subversion repository using git instead of Subversion. This is a great program because it allows you to collaborate with a Subversion controlled project by using git to manage the code.

June 25 2009

netzrauschen

How do I clone all remote branches with Git? - Stack Overflow

I have a master and a dev branch, both pushed to github, I've cloned, pulled, fetched, but I remain unable to get anything other than the master branch back. I'm sure I'm missing something obvious, but I have RTM any I'm getting no joy at all.
netzrauschen

June 24 2009

netzrauschen
Older posts are this way If this message doesn't go away, click anywhere on the page to continue loading posts.
Could not load more posts
Maybe Soup is currently being updated? I'll try again automatically in a few seconds...
Just a second, loading more posts...
You've reached the end.