An open API service indexing awesome lists of open source software.

https://github.com/parmentf/testnodejs

Here I will test NodeJS (and hopefully Cloud9 IDE)
https://github.com/parmentf/testnodejs

Last synced: 12 months ago
JSON representation

Here I will test NodeJS (and hopefully Cloud9 IDE)

Awesome Lists containing this project

README

          

# testNodeJS #

## Introduction ##

This is my first experience with git.

Until now, I used Mercurial (and bitbucket), because of two main reasons:

1. it is largely used by Python community
2. it is written in Python and thus portable (especially to Windows)

But I develop on Ubuntu, so I can give git a try :)

## Default README ##

Here is what was at the home page of the repository:

> ### Global setup:
>
> Download and install Git
>
git config --global user.name "Your Name"
git config --global user.email firstname.lastname@gmail.com
>
>
> ### Next steps:
>
mkdir testNodeJs
cd testNodeJs
git init
touch README
git add README
git commit -m 'first commit'
git remote add origin git@github.com:parmentf/testNodeJs.git
git push origin master
>
>
> ### Existing Git Repo?
>
cd existing_git_repo
git remote add origin git@github.com:parmentf/testNodeJs.git
git push origin master
>
>
> ### Importing a Subversion Repo?
>
>
>
>
> ### When you're done:
>
>

## Git ##

Now, I'll have to learn git. :P

Hmm...

- git add (or git commit -a)
- git commit
- git push

A good quick reference site on git:

## HowToNode ##

A good starting point seems to be