-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
libra guest
committed
Oct 22, 2012
0 parents
commit 78d9fa3
Showing
1 changed file
with
18 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
# README for a newly created project. | ||
|
||
There are a couple of things you should do first, before you can use all of Git's power: | ||
|
||
* Add a remote to this project: in the Cloud9 IDE command line, you can execute the following commands | ||
`git remote add [remote name] [remote url (eg. '[email protected]:/ajaxorg/node_chat')]` [Enter] | ||
* Create new files inside your project | ||
* Add them to to Git by executing the following command | ||
`git add [file1, file2, file3, ...]` [Enter] | ||
* Create a commit which can be pushed to the remote you just added | ||
`git commit -m 'added new files'` [Enter] | ||
* Push the commit the remote | ||
`git push [remote name] master` [Enter] | ||
|
||
That's it! If this doesn't work for you, please visit the excellent resources from [Github.com](http://help.github.com) and the [Pro Git](http://http://progit.org/book/) book. | ||
If you can't find your answers there, feel free to ask us via Twitter (@cloud9ide), [mailing list](groups.google.com/group/cloud9-ide) or IRC (#cloud9ide on freenode). | ||
|
||
Happy coding! |