Skip to content

Latest commit

 

History

History
107 lines (68 loc) · 3.68 KB

resources.md

File metadata and controls

107 lines (68 loc) · 3.68 KB

Resources for working with Git

Websites

More on just command line

Cheat Sheets

Command line

GUI Tools

For when the command line becomes all too much.

Editor Integrations

Atom

Sublime Text 2 / 3

Emacs

VIM

JetBrains IDEs

Nothing additional needed, all the fabulous JetBrains IDEs (WebStorm, PyCharm, RubyMine, PhpStorm, etc) come with exceptional support for git.

Online Courses

Other Resources

git init new_project
cd new_project
hub create
echo '# My New Awesome Project' > README.md
git add -A
git commit -m initial
git push -u origin HEAD