summaryrefslogtreecommitdiffstats
path: root/EXAMPLES
diff options
context:
space:
mode:
authorscott Chacon <schacon@agadorsparticus.(none)>2007-11-11 10:04:26 -0800
committerscott Chacon <schacon@agadorsparticus.(none)>2007-11-11 10:04:26 -0800
commita1237671ba3ec38f5b123ee6600e4352dc03196b (patch)
tree71bc13cb36799e778237097b343a4d4fa9189b3f /EXAMPLES
parentefcce7fc123b9e64fb9d93224e4e78d09144af3d (diff)
downloadthird_party-ruby-git-a1237671ba3ec38f5b123ee6600e4352dc03196b.tar.gz
third_party-ruby-git-a1237671ba3ec38f5b123ee6600e4352dc03196b.tar.xz
third_party-ruby-git-a1237671ba3ec38f5b123ee6600e4352dc03196b.zip
git add working, git status object working
Diffstat (limited to 'EXAMPLES')
-rw-r--r--EXAMPLES6
1 files changed, 3 insertions, 3 deletions
diff --git a/EXAMPLES b/EXAMPLES
index 864db8d..b454a32 100644
--- a/EXAMPLES
+++ b/EXAMPLES
@@ -81,12 +81,12 @@ g = Git.init
g = Git.clone(URI, :name => 'name', :path => '/tmp/checkout'
(git_dir, index_file)
+g.config('user.name', 'Scott Chacon')
+g.config('user.email', 'email@email.com')
+
***** IMPLEMENTED *****
-
-g.config('user.name', 'Scott Chacon')
-g.config('user.email', 'email@email.com')
g.add('.')
g.add([file1, file2])