Welcome To Snipplr


Everyone's Recent Snippets Tagged git



0 504 posted 13 years ago by level09
If you accidentally exit while doing an interactive rebase, you can clean it with this command.
0 592 posted 13 years ago by stayce
0 527 posted 13 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 945 posted 14 years ago by alvarezrilla
0 470 posted 14 years ago by kmorey
0 534 posted 14 years ago by nate63179
0 555 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 792 posted 14 years ago by berkes
This is how to patch changes from svn into git (should work with other vcs as well).
0 608 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 1010 posted 14 years ago by jturmel
How to setup a remote git repository via SSH.
0 732 posted 14 years ago by narkisr
0 395 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 602 posted 14 years ago by alvarezrilla
0 529 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 825 posted 14 years ago by zingo
1 649 posted 14 years ago by craig0990
1 567 posted 14 years ago by ericboehs
This is for creating an annotated tag in Git.
0 667 posted 14 years ago by jturmel
0 536 posted 14 years ago by hlubek
1 646 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 1788 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 580 posted 15 years ago by narkisr
0 616 posted 15 years ago by endorfin
Contents of the .gitignore file used in my XCode projects.
1 647 posted 15 years ago by scasware