Showing posts with label Git. Show all posts
Showing posts with label Git. Show all posts

Wednesday, April 24, 2013

Git repo soap4r forked

made update to this to run in Ruby 2.0.0


Welcome to Git (version 1.8.1.2-preview20130201)


Run 'git help git' to display the help index.
Run 'git help ' to display help for specific commands.
AWG tek@awgtek ~
$ dir
sh.exe": dir: command not found
AWG tek@awgtek ~
$ mkdir awgteksoap4r
AWG tek@awgtek ~
$ cd awgteksoap4r/
AWG tek@awgtek ~/awgteksoap4r
$ git clone https://github.com/awgtek/soap4r.git
Cloning into 'soap4r'...
remote: Counting objects: 880, done.
remote: Compressing objects: 100% (717/717), done.
emote: Total 880 (delta 192), reused 748 (delta 141)Receiving objects:  99% (872
Receiving objects: 100% (880/880), 836.68 KiB, done.

Resolving deltas: 100% (192/192), done.
Checking out files: 100% (642/642), done.
AWG tek@awgtek ~/awgteksoap4r
$ ls
soap4r
AWG tek@awgtek ~/awgteksoap4r
$ ls -la
total 6
drwxr-xr-x    3 AWG tek adm        0 Apr 24 16:31 .
drwxr-xr-x    1 AWG tek adm     8192 Apr 24 16:29 ..
drwxr-xr-x   16 AWG tek adm     4096 Apr 24 16:31 soap4r
AWG tek@awgtek ~/awgteksoap4r
$ ls
soap4r
AWG tek@awgtek ~/awgteksoap4r
$ pwd
/c/Users/AWG tek/awgteksoap4r
AWG tek@awgtek ~/awgteksoap4r
$ cd soap4r
AWG tek@awgtek ~/awgteksoap4r/soap4r (master)
$ ls
COPYING  README.rdoc  Rakefile  install.rb  rubyStyle.css  soap4r.gemspec
GPL      RUBYS        bin       lib         sample         test
AWG tek@awgtek ~/awgteksoap4r/soap4r (master)
$ git config --global user.name redacted
AWG tek@awgtek ~/awgteksoap4r/soap4r (master)
$ git config --global user.email redacted
AWG tek@awgtek ~/awgteksoap4r/soap4r (master)
$ git status
# On branch master
nothing to commit, working directory clean
AWG tek@awgtek ~/awgteksoap4r/soap4r (master)
$ git status
# On branch master
# Changes not staged for commit:
#   (use "git add ..." to update what will be committed)
#   (use "git checkout -- ..." to discard changes in working directory)
#
#       modified:   install.rb
#
no changes added to commit (use "git add" and/or "git commit -a")
AWG tek@awgtek ~/awgteksoap4r/soap4r (master)
$ ls
COPYING  README.rdoc  Rakefile  install.rb  rubyStyle.css  soap4r.gemspec
GPL      RUBYS        bin       lib         sample         test
AWG tek@awgtek ~/awgteksoap4r/soap4r (master)
$ git add install.rb
AWG tek@awgtek ~/awgteksoap4r/soap4r (master)
$ git status
# On branch master
# Changes to be committed:
#   (use "git reset HEAD ..." to unstage)
#
#       modified:   install.rb
#
AWG tek@awgtek ~/awgteksoap4r/soap4r (master)
$ git commit -m "Updating install.rb for ruby 2.0.0"
[master 8721f43] Updating install.rb for ruby 2.0.0
 1 file changed, 17 insertions(+), 7 deletions(-)
AWG tek@awgtek ~/awgteksoap4r/soap4r (master)
$ git push -u origin master
Username for 'https://github.com': awgtek
Password for 'https://awgtek@github.com':
Counting objects: 5, done.
Delta compression using up to 4 threads.
Compressing objects: 100% (3/3), done.
Writing objects: 100% (3/3), 626 bytes, done.
Total 3 (delta 2), reused 0 (delta 0)
To https://github.com/awgtek/soap4r.git
   68483b8..8721f43  master -> master
Branch master set up to track remote branch master from origin.
AWG tek@awgtek ~/awgteksoap4r/soap4r (master)
$