vim-fugitive like package for atom. make commits and other git things without the terminal
Git add [all]
Git add will add the current file and 'add all' will add all changed files
Git commit
Will pull up a commit message file. The commit will be made when the file is saved NOT when the pane is closed. You can just cancel by closing the tab
Git [checkout]
Change branches
Git new branch
Create a new branch
Git [push|pull]
- Fork it
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create new Pull Request