Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How can I run `git commit` and `git push` in atom?

Tags:

atom-editor

Is there a way to run git commit and git push in the Atom editor?

I read this blog post but could not find that mentioned: http://blog.atom.io/2014/03/13/git-integration.html

like image 824
Asimov4 Avatar asked Oct 25 '15 01:10

Asimov4


People also ask

How do I use atom as a git commit editor?

Atom can be used as your Git commit editor and ships with the language-git package which adds syntax highlighting to edited commit, merge, and rebase messages. You can configure Atom to be your Git commit editor with the following command: git config --global core.editor "atom --wait"

Is git commit and Git push available in the app?

Both git commit and git push (along with lotsa other commands) are now available in the app natively (version 1.18+). There is a GUI for staging and reviewing changes as well as committing them with a commit message.

How do I push changes to a remote repository in Git?

Click the Commit button or hover the mouse over this button to display the available commit options: Commit and Push: push the changes to the remote repository immediately after the commit. You can also press Ctrl+Alt+K to invoke the Commit and Push action from the Commit dialog.

How to push tags and commits at the same time in Git?

Since Git 2.4, we can use the following command to push tags and commits at the same time: For example, the following command push the commits to origin master branch together with tag reference tag-name .


1 Answers

What you're looking for is the git-plus package. Install that - it provides full Git integration with commands like commit, add, push, pull and lots of others.

Git-Plus

like image 54
nwinkler Avatar answered Oct 08 '22 11:10

nwinkler