https://www.atlassian.com/git/tutorials/setting-up-a-repository https://developer.github.com/guides/ => start here and ask questions here...
https://www.facebook.com/groups/osswebdevbackend/
New devs... first NULL commit to github....
Here are some git basics for those new to git and github.
http://www-cs-students.stanford.edu/~blynn/gitmagic/ch02.html
Also, this quicktime video is AWESOME:
http://urbanspectra.com/media/vids/GIT_VIDEOS.mov
Windows users may require installation of the free quicktime player to see this video:
http://support.apple.com/kb/DL837 This is my first "null commit".
In order to accomplish this:
Logged into github and created new public repo:
Cloned this repo to my desktop:
$ git clone https://github.com/jdonson/first-null-commit.git
Entered directory and made these edits.
$ git status
=> Shows that there are changes to this repo.
$ git add .
=> Add all changes to the repo.
$ git commit -m "first null commit jdonson"
=> Commits these changes to repo.
$ git status
=> Confirm current repo.
macusers-MacBook-Pro:first-null-commit macuser$ git status
# nothing to commit (working directory clean)
$ git push
=> Push these changes and view them on github.
Just committing a change and going through each step mentioned. Thanks! I'll delete this line soon after. -DikDur