This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
From bf30340d325add26ba2c02e9770be084c3459e91 Mon Sep 17 00:00:00 2001 | |
From: Scott Chacon <[email protected]> | |
Date: Thu, 9 Oct 2008 10:48:17 -0700 | |
Subject: [PATCH] wording clarification for what the subdomain is for campfire | |
--- | |
docs/campfire | 4 +++- | |
1 files changed, 3 insertions(+), 1 deletions(-) | |
diff --git a/docs/campfire b/docs/campfire |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
CREATE TABLE `git_files` ( | |
`id` int(11) NOT NULL auto_increment, | |
`path` text, | |
`sha_value` char(40) default NULL, | |
`repo` char(255) default NULL, | |
PRIMARY KEY (`id`), | |
KEY `lookup` (`repo`(15),`path`(20),`sha_value`(20)) | |
) ENGINE=InnoDB DEFAULT CHARSET=utf8; | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
## | |
# Wrapper for the Pygments command line tool, pygmentize. | |
# | |
# Pygments: http://pygments.org/ | |
# | |
# Assumes pygmentize is in the path. If not, set its location | |
# with Albino.bin = '/path/to/pygmentize' | |
# | |
# Use like so: | |
# |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
this is cool |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
The most commonly used git commands are: | |
Basic Commands | |
init Create an empty git repository or reinitialize an existing one | |
add Add file contents to the staging area | |
status Show the working tree and staging area status | |
commit Record changes in the staging area to the repository | |
rm Remove files from the working tree and from the index | |
mv Move or rename a file, a directory, or a symlink | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Subject: [PATCH 1/1] diff: support making output friendlier for fine, grand users | |
Signed-off-by: Johannes Schindelin <[email protected]> | |
Signed-off-by: Scott Chacon <[email protected]> | |
Signed-off-by: Tom Preston-Werner <[email protected]> | |
Signed-off-by: Jeff King <[email protected]> | |
Signed-off-by: J.H. <[email protected]> | |
Signed-off-by: Sam Vilain <[email protected]> | |
Signed-off-by: Christian Couder <[email protected]> | |
Signed-off-by: Kai Blin <[email protected]> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
From 23c918660c69ce36039e27aa472203652788255a Mon Sep 17 00:00:00 2001 | |
From: Pieter de Bie <[email protected]> | |
Date: Sat, 1 Nov 2008 21:37:15 +0100 | |
Subject: [PATCH] HistoryView: Allow creation of branches | |
--- | |
GitX.xcodeproj/project.pbxproj | 4 + | |
Images/add_branch.png | Bin 0 -> 3751 bytes | |
Images/add_branch.psd | Bin 0 -> 163035 bytes | |
PBGitHistoryController.h | 2 +- |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ github network commits | |
9582b9 (jchris/gist) [email protected] Add gist binary 4 months ago | |
c1a6f9 (jchris/gist~1) [email protected] Tweak Rakefile spec tasks to be a bi 4 months ago | |
d3c332 (jchris/gist~2) [email protected] Pull out two helpers into the shared 4 months ago | |
8f65ab (jchris/gist~3) [email protected] Extract command/helper spec assistan 4 months ago | |
389dbf (jchris/gist~4) [email protected] Rename ui_spec to command_spec 4 months ago | |
670a1a (jchris/gist~5) [email protected] Hoist the specs into a per-binary sp 4 months ago | |
6aa18e (jchris/gist~6) [email protected] Hoist commands/helpers into a per-co 4 months ago | |
ee013a (luislavena/master) [email protected] Replaced STDOUT by $stdout in specs. 2 weeks ago |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ git | |
usage: git [--version] [--exec-path[=GIT_EXEC_PATH]] [-p|--paginate|--no-pager] [--bare] [--git-dir=GIT_DIR] [--work-tree=GIT_WORK_TREE] [--help] COMMAND [ARGS] | |
The most commonly used git commands are: | |
add Add file contents to the index | |
bisect Find the change that introduced a bug by binary search | |
branch List, create, or delete branches | |
checkout Checkout a branch or paths to the working tree | |
clone Clone a repository into a new directory | |
commit Record changes to the repository |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#! /usr/bin/ruby | |
## | |
# Remove any duplicate tracks in iTunes | |
# PJ Hyett was here 11/2008 | |
framework "Cocoa" | |
framework "ScriptingBridge" | |
itunes = SBApplication.applicationWithBundleIdentifier("com.apple.iTunes") |