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)
- Host: GitHub
- URL: https://github.com/parmentf/testnodejs
- Owner: parmentf
- Created: 2011-02-01T20:40:38.000Z (about 15 years ago)
- Default Branch: master
- Last Pushed: 2011-02-04T22:03:42.000Z (about 15 years ago)
- Last Synced: 2024-04-09T01:30:35.352Z (almost 2 years ago)
- Language: JavaScript
- Homepage:
- Size: 97.7 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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