Friday, July 25, 2008

creating an git repository was easy (at github)

$ mkdir firebird_scripts
$ cd firebird_scripts
$ git init
$ touch README

$ git add README
$git commit -m 'first commit'
Created initial commit 145b8ed: first commit
0 files changed, 0 insertions(+), 0 deletions(-)
create mode 100644 README
$ git remote add origin git@github.com:mariuz/firebird_scripts.git

git push origin master
The authenticity of host 'github.com (65.74.177.129)' can't be established.
RSA key fingerprint is 16:27:ac:a5:76:28:2d:36:63:1b:56:4d:eb:df:a6:48.
Are you sure you want to continue connecting (yes/no)? yes
Warning: Permanently added 'github.com,65.74.177.129' (RSA) to the list of known hosts.
Counting objects: 3, done.
Writing objects: 100% (3/3), 202 bytes, done.
Total 3 (delta 0), reused 0 (delta 0)
To git@github.com:mariuz/firebird_scripts.git
* [new branch] master -> master



So here is my repository

No comments: