$ sudo tcpdump -i en0 -s 0 -B 524288 -w ~/Desktop/local.pcap
parse package
$ tcpdump -s 0 -n -e -XX -vvv -r ~/Desktop/local.pcap
$ sudo tcpdump -i en0 -s 0 -B 524288 -w ~/Desktop/local.pcap
$ tcpdump -s 0 -n -e -XX -vvv -r ~/Desktop/local.pcap
$ git checkout -b myFeature devCreates MyFeature branch off dev. Do your work and then
$ git commit -am "Your message"Now merge your changes to dev without a fast-forward
$ git checkout dev $ git merge --no-ff myFeature
$ git push origin dev $ git push origin myFeatureRefs http://stackoverflow.com/questions/4470523/git-create-a-branch-from-another-branch