Welcome To Snipplr


Everyone's Recent Snippets Tagged git



0 521 posted 13 years ago by level09
If you accidentally exit while doing an interactive rebase, you can clean it with this command.
0 610 posted 13 years ago by stayce
0 549 posted 14 years ago by stayce
Note that you don't actually need a temporary branch, you can do this with a 'detached HEAD', but you need to take a note of the commit id generated by the git commit --amend step to supply to the git rebase command rather than using the temporary br...
0 967 posted 14 years ago by alvarezrilla
0 484 posted 14 years ago by kmorey
0 556 posted 14 years ago by nate63179
0 578 posted 14 years ago by nate63179
make a tarball of only the changed directories in a git repos, since last tag. replace {tagname_last} with any name you siwh to give the tarball replace {tagname_previous} with a git reference (like a tag) from which you want to zip the changes.
0 821 posted 14 years ago by berkes
This is how to patch changes from svn into git (should work with other vcs as well).
0 634 posted 14 years ago by narkisr
Squashing --------- WARNING: "git rebase" changes history. Be careful. Google it. git rebase --interactive HEAD~10 (then change all but the first "pick" to "squash") squash the last 10 commits into one big commit
0 1035 posted 14 years ago by jturmel
How to setup a remote git repository via SSH.
0 746 posted 14 years ago by narkisr
0 408 posted 14 years ago by nate63179
Setup default ignores, aliases, colors, completion and bash prompt in Git These are to be run from Terminal.
1 621 posted 14 years ago by alvarezrilla
0 552 posted 14 years ago by paulbooker
Put this into your ~/.bashrc script and you should see the Git/SVN status in your prompt if your working directory is a sandbox.
0 850 posted 14 years ago by zingo
1 670 posted 14 years ago by craig0990
1 582 posted 14 years ago by ericboehs
This is for creating an annotated tag in Git.
0 685 posted 14 years ago by jturmel
0 549 posted 14 years ago by hlubek
1 673 posted 14 years ago by wdso
This example shows how to clean up git's reflogs entries in order save space (see http://www.newartisans.com/blog/2008/04/diving-into-git.html).
0 1813 posted 15 years ago by narkisr
This snippet shows how to restore HEAD after using Git's reset method (see http://gitready.com/2009/01/17/restoring-lost-commits.html?disqus_reply=5271828#comment-5271828).
0 596 posted 15 years ago by narkisr
0 639 posted 15 years ago by endorfin
Contents of the .gitignore file used in my XCode projects.
1 668 posted 15 years ago by scasware