Skip to content

Commit

Permalink
First commit
Browse files Browse the repository at this point in the history
  • Loading branch information
Apress committed Oct 17, 2016
0 parents commit 0818461
Show file tree
Hide file tree
Showing 483 changed files with 5,213 additions and 0 deletions.
Binary file added 9781430261032.jpg
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
27 changes: 27 additions & 0 deletions LICENSE.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
Freeware License, some rights reserved

Copyright (c) 2013 Wlodzimierz Gajda

Permission is hereby granted, free of charge, to anyone obtaining a copy
of this software and associated documentation files (the "Software"),
to work with the Software within the limits of freeware distribution and fair use.
This includes the rights to use, copy, and modify the Software for personal use.
Users are also allowed and encouraged to submit corrections and modifications
to the Software for the benefit of other users.

It is not allowed to reuse, modify, or redistribute the Software for
commercial use in any way, or for a user�s educational materials such as books
or blog articles without prior permission from the copyright holder.

The above copyright notice and this permission notice need to be included
in all copies or substantial portions of the software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS OR APRESS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.


15 changes: 15 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
#Apress Source Code

This repository accompanies [*Git Recipes*](http://www.apress.com/9781430261032) by Wlodzimierz Gajda (Apress, 2013).

![Cover image](9781430261032.jpg)

Download the files as a zip using the green button, or clone the repository to your machine using Git.

##Releases

Release v1.0 corresponds to the code in the published book, without corrections or updates.

##Contributions

See the file Contributing.md for more information on how you can contribute to this repository.
14 changes: 14 additions & 0 deletions contributing.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# Contributing to Apress Source Code

Copyright for Apress source code belongs to the author(s). However, under fair use you are encouraged to fork and contribute minor corrections and updates for the benefit of the author(s) and other readers.

## How to Contribute

1. Make sure you have a GitHub account.
2. Fork the repository for the relevant book.
3. Create a new branch on which to make your change, e.g.
`git checkout -b my_code_contribution`
4. Commit your change. Include a commit message describing the correction. Please note that if your commit message is not clear, the correction will not be accepted.
5. Submit a pull request.

Thank you for your contribution!
4 changes: 4 additions & 0 deletions git-recipes/02-10/aliases.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
[alias]
l = log --abbrev-commit --abbrev=4 --pretty=oneline -25
days = "!days() { git log --pretty=format:%cd --date=short | uniq; }; days"
stat = "!stat() { echo -n Number of revisions:; git log --oneline | wc -l; echo -n Number of developers:; git shortlog -s | wc -l; echo -n Number of days:; git days | wc -l; echo -n The working directory:; du -h -s --exclude=.git; echo -n The git directory:; du -h -s .git; echo -n Number of files in the working dir:; git ls-files | wc -l; }; stat"
1 change: 1 addition & 0 deletions git-recipes/03-01
Submodule 03-01 added at ffa623
2 changes: 2 additions & 0 deletions git-recipes/03-02/alias.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
[alias]
snapshot = "!snapshot() { COMMENT=wip; if [ \"$*\" ]; then COMMENT=\"$*\"; fi; git add -A; git commit -m \"$COMMENT\"; }; snapshot"
1 change: 1 addition & 0 deletions git-recipes/03-03
Submodule 03-03 added at 39d64b
1 change: 1 addition & 0 deletions git-recipes/03-04
Submodule 03-04 added at abda33
1 change: 1 addition & 0 deletions git-recipes/03-05
Submodule 03-05 added at 348f9b
1 change: 1 addition & 0 deletions git-recipes/03-06
Submodule 03-06 added at abda33
2 changes: 2 additions & 0 deletions git-recipes/03-07/alias.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
[alias]
s = status -sb
1 change: 1 addition & 0 deletions git-recipes/03-08
Submodule 03-08 added at 481f34
1 change: 1 addition & 0 deletions git-recipes/03-10
Submodule 03-10 added at ffa623
3 changes: 3 additions & 0 deletions git-recipes/03-11/alias.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
[alias]
create-file = "!createFile() { for name in \"$@\"; do echo $name>$name.txt; done; }; createFile"
simple-commit = "!simpleCommit() { for name in \"$@\"; do git create-file \"$name\"; git snapshot $name; done; }; simpleCommit"
1 change: 1 addition & 0 deletions git-recipes/03-12
Submodule 03-12 added at c4ac74
1 change: 1 addition & 0 deletions git-recipes/04-01/new.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
new
1 change: 1 addition & 0 deletions git-recipes/04-02
Submodule 04-02 added at a59c76
1 change: 1 addition & 0 deletions git-recipes/04-03
Submodule 04-03 added at 01517a
1 change: 1 addition & 0 deletions git-recipes/04-04
Submodule 04-04 added at bf51a7
1 change: 1 addition & 0 deletions git-recipes/04-05
Submodule 04-05 added at af595a
1 change: 1 addition & 0 deletions git-recipes/04-06
Submodule 04-06 added at 3e7bdb
1 change: 1 addition & 0 deletions git-recipes/04-07
Submodule 04-07 added at 9226dc
1 change: 1 addition & 0 deletions git-recipes/04-08
Submodule 04-08 added at 2cdfc4
1 change: 1 addition & 0 deletions git-recipes/04-09
Submodule 04-09 added at 4710ac
1 change: 1 addition & 0 deletions git-recipes/04-10
Submodule 04-10 added at c4842d
1 change: 1 addition & 0 deletions git-recipes/04-11
Submodule 04-11 added at c4842d
1 change: 1 addition & 0 deletions git-recipes/05-01
Submodule 05-01 added at 7c9bc4
1 change: 1 addition & 0 deletions git-recipes/05-02
Submodule 05-02 added at 7c9bc4
5 changes: 5 additions & 0 deletions git-recipes/05-03/alias.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
[alias]
list-remote-branches = "!listRemoteBranches() { git branch -r | sed \"/->/d; s/ origin\\///g\"; }; listRemoteBranches"
checkout-remote-branches = "!checkoutRemoteBranches() { for name in `git list-remote-branches`; do git checkout $name; done; }; checkoutRemoteBranches"
clone-with-branches = "!cloneWithBranches() { git clone $1 $2; cd $2; git checkout-remote-branches; git remote rm origin; }; cloneWithBranches"

1 change: 1 addition & 0 deletions git-recipes/05-04
Submodule 05-04 added at 7c9bc4
1 change: 1 addition & 0 deletions git-recipes/05-05
Submodule 05-05 added at 23d985
1 change: 1 addition & 0 deletions git-recipes/05-06
Submodule 05-06 added at 7c9bc4
1 change: 1 addition & 0 deletions git-recipes/05-07
Submodule 05-07 added at 0d6501
1 change: 1 addition & 0 deletions git-recipes/05-08
Submodule 05-08 added at 7ad418
1 change: 1 addition & 0 deletions git-recipes/05-09
Submodule 05-09 added at 23d985
1 change: 1 addition & 0 deletions git-recipes/05-10
Submodule 05-10 added at 7c9bc4
1 change: 1 addition & 0 deletions git-recipes/05-11
Submodule 05-11 added at 03d837
1 change: 1 addition & 0 deletions git-recipes/05-12
Submodule 05-12 added at 7c9bc4
1 change: 1 addition & 0 deletions git-recipes/05-13/HEAD
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
ref: refs/heads/doc
9 changes: 9 additions & 0 deletions git-recipes/05-13/config
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
[core]
repositoryformatversion = 0
filemode = false
bare = true
symlinks = false
ignorecase = true
hideDotFiles = dotGitOnly
[remote "origin"]
url = c:/git-recipes/05-01
1 change: 1 addition & 0 deletions git-recipes/05-13/description
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Unnamed repository; edit this file 'description' to name the repository.
15 changes: 15 additions & 0 deletions git-recipes/05-13/hooks/applypatch-msg.sample
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
#!/bin/sh
#
# An example hook script to check the commit log message taken by
# applypatch from an e-mail message.
#
# The hook should exit with non-zero status after issuing an
# appropriate message if it wants to stop the commit. The hook is
# allowed to edit the commit message file.
#
# To enable this hook, rename this file to "applypatch-msg".

. git-sh-setup
test -x "$GIT_DIR/hooks/commit-msg" &&
exec "$GIT_DIR/hooks/commit-msg" ${1+"$@"}
:
24 changes: 24 additions & 0 deletions git-recipes/05-13/hooks/commit-msg.sample
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
#!/bin/sh
#
# An example hook script to check the commit log message.
# Called by "git commit" with one argument, the name of the file
# that has the commit message. The hook should exit with non-zero
# status after issuing an appropriate message if it wants to stop the
# commit. The hook is allowed to edit the commit message file.
#
# To enable this hook, rename this file to "commit-msg".

# Uncomment the below to add a Signed-off-by line to the message.
# Doing this in a hook is a bad idea in general, but the prepare-commit-msg
# hook is more suited to it.
#
# SOB=$(git var GIT_AUTHOR_IDENT | sed -n 's/^\(.*>\).*$/Signed-off-by: \1/p')
# grep -qs "^$SOB" "$1" || echo "$SOB" >> "$1"

# This example catches duplicate Signed-off-by lines.

test "" = "$(grep '^Signed-off-by: ' "$1" |
sort | uniq -c | sed -e '/^[ ]*1[ ]/d')" || {
echo >&2 Duplicate Signed-off-by lines.
exit 1
}
8 changes: 8 additions & 0 deletions git-recipes/05-13/hooks/post-commit.sample
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
#!/bin/sh
#
# An example hook script that is called after a successful
# commit is made.
#
# To enable this hook, rename this file to "post-commit".

: Nothing
15 changes: 15 additions & 0 deletions git-recipes/05-13/hooks/post-receive.sample
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
#!/bin/sh
#
# An example hook script for the "post-receive" event.
#
# The "post-receive" script is run after receive-pack has accepted a pack
# and the repository has been updated. It is passed arguments in through
# stdin in the form
# <oldrev> <newrev> <refname>
# For example:
# aa453216d1b3e49e7f6f98441fa56946ddcd6a20 68f7abf4e6f922807889f52bc043ecd31b79f814 refs/heads/master
#
# see contrib/hooks/ for a sample, or uncomment the next line and
# rename the file to "post-receive".

#. /usr/share/doc/git-core/contrib/hooks/post-receive-email
8 changes: 8 additions & 0 deletions git-recipes/05-13/hooks/post-update.sample
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
#!/bin/sh
#
# An example hook script to prepare a packed repository for use over
# dumb transports.
#
# To enable this hook, rename this file to "post-update".

exec git update-server-info
14 changes: 14 additions & 0 deletions git-recipes/05-13/hooks/pre-applypatch.sample
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
#!/bin/sh
#
# An example hook script to verify what is about to be committed
# by applypatch from an e-mail message.
#
# The hook should exit with non-zero status after issuing an
# appropriate message if it wants to stop the commit.
#
# To enable this hook, rename this file to "pre-applypatch".

. git-sh-setup
test -x "$GIT_DIR/hooks/pre-commit" &&
exec "$GIT_DIR/hooks/pre-commit" ${1+"$@"}
:
50 changes: 50 additions & 0 deletions git-recipes/05-13/hooks/pre-commit.sample
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
#!/bin/sh
#
# An example hook script to verify what is about to be committed.
# Called by "git commit" with no arguments. The hook should
# exit with non-zero status after issuing an appropriate message if
# it wants to stop the commit.
#
# To enable this hook, rename this file to "pre-commit".

if git rev-parse --verify HEAD >/dev/null 2>&1
then
against=HEAD
else
# Initial commit: diff against an empty tree object
against=4b825dc642cb6eb9a060e54bf8d69288fbee4904
fi

# If you want to allow non-ascii filenames set this variable to true.
allownonascii=$(git config hooks.allownonascii)

# Redirect output to stderr.
exec 1>&2

# Cross platform projects tend to avoid non-ascii filenames; prevent
# them from being added to the repository. We exploit the fact that the
# printable range starts at the space character and ends with tilde.
if [ "$allownonascii" != "true" ] &&
# Note that the use of brackets around a tr range is ok here, (it's
# even required, for portability to Solaris 10's /usr/bin/tr), since
# the square bracket bytes happen to fall in the designated range.
test $(git diff --cached --name-only --diff-filter=A -z $against |
LC_ALL=C tr -d '[ -~]\0' | wc -c) != 0
then
echo "Error: Attempt to add a non-ascii file name."
echo
echo "This can cause problems if you want to work"
echo "with people on other platforms."
echo
echo "To be portable it is advisable to rename the file ..."
echo
echo "If you know what you are doing you can disable this"
echo "check using:"
echo
echo " git config hooks.allownonascii true"
echo
exit 1
fi

# If there are whitespace errors, print the offending file names and fail.
exec git diff-index --check --cached $against --
53 changes: 53 additions & 0 deletions git-recipes/05-13/hooks/pre-push.sample
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
#!/bin/sh

# An example hook script to verify what is about to be pushed. Called by "git
# push" after it has checked the remote status, but before anything has been
# pushed. If this script exits with a non-zero status nothing will be pushed.
#
# This hook is called with the following parameters:
#
# $1 -- Name of the remote to which the push is being done
# $2 -- URL to which the push is being done
#
# If pushing without using a named remote those arguments will be equal.
#
# Information about the commits which are being pushed is supplied as lines to
# the standard input in the form:
#
# <local ref> <local sha1> <remote ref> <remote sha1>
#
# This sample shows how to prevent push of commits where the log message starts
# with "WIP" (work in progress).

remote="$1"
url="$2"

z40=0000000000000000000000000000000000000000

IFS=' '
while read local_ref local_sha remote_ref remote_sha
do
if [ "$local_sha" = $z40 ]
then
# Handle delete
else
if [ "$remote_sha" = $z40 ]
then
# New branch, examine all commits
range="$local_sha"
else
# Update to existing branch, examine new commits
range="$remote_sha..$local_sha"
fi

# Check for WIP commit
commit=`git rev-list -n 1 --grep '^WIP' "$range"`
if [ -n "$commit" ]
then
echo "Found WIP commit in $local_ref, not pushing"
exit 1
fi
fi
done

exit 0

0 comments on commit 0818461

Please sign in to comment.