Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/bensheldon/twittersip
https://github.com/bensheldon/twittersip
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/bensheldon/twittersip
- Owner: bensheldon
- Created: 2012-02-10T19:19:10.000Z (almost 13 years ago)
- Default Branch: master
- Last Pushed: 2012-02-10T19:21:42.000Z (almost 13 years ago)
- Last Synced: 2024-05-02T06:08:48.243Z (7 months ago)
- Language: JavaScript
- Homepage:
- Size: 340 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# 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!