Skip to content

Instantly share code, notes, and snippets.

$ eval `ssh-agent -s`
$ ssh-add
rebase基本用法:
http://git-scm.com/book/en/Git-Branching-Rebasing
git co xxx
git rebase master : patch modification of xxx on base of master branch
rebase远程分支:
http://stackoverflow.com/questions/7929369/how-to-rebase-local-branch-with-remote-master
1.
>git fetch origin
>git rebase origin/master
Wrap your JavaScript around {literal}{/literal} tags so it won't get interpreted by Smarty.
@baijian
baijian / tcpdump
Last active January 2, 2016 16:39
tcpdump host 114.80.132.160 and (tcp port 80 or tcp port 443) -nnX -s 1600
@baijian
baijian / gist:8294141
Created January 7, 2014 03:16
git tag
git push origin :refs/tags/12345
raspdebian-> /boot/config.txt
display_rotate=0 Normal
display_rotate=1 90 degrees
display_rotate=2 180 degrees
display_rotate=3 270 degrees
display_rotate=0x10000 horizontal flip
display_rotate=0x20000 vertical flip
git config http.postBuffer 104857600
git remote show origin
If the remote branch you want to checkout is under "New remote branches" and not "Tracked remote branches" then you need to fetch them first:
git remote update
git fetch
Now it should work:
git checkout -b local-name origin/remote-name
mvn install:install-file -DgroupId=org.zmq -DartifactId=zmq -Dversion=2.2.2 -Dpackaging=jar -Dfile=/usr/local/share/java/zmq.jar
@baijian
baijian / git
Created November 22, 2013 11:29
git fetch origin
git co gh-pages