Git
Plugin for some git integration into sublime text
Details
Installs
- Total 1.22M
- Win 564K
- Mac 370K
- Linux 284K
Dec 21 | Dec 20 | Dec 19 | Dec 18 | Dec 17 | Dec 16 | Dec 15 | Dec 14 | Dec 13 | Dec 12 | Dec 11 | Dec 10 | Dec 9 | Dec 8 | Dec 7 | Dec 6 | Dec 5 | Dec 4 | Dec 3 | Dec 2 | Dec 1 | Nov 30 | Nov 29 | Nov 28 | Nov 27 | Nov 26 | Nov 25 | Nov 24 | Nov 23 | Nov 22 | Nov 21 | Nov 20 | Nov 19 | Nov 18 | Nov 17 | Nov 16 | Nov 15 | Nov 14 | Nov 13 | Nov 12 | Nov 11 | Nov 10 | Nov 9 | Nov 8 | Nov 7 | Nov 6 | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Windows | 12 | 12 | 28 | 27 | 32 | 29 | 19 | 9 | 25 | 17 | 28 | 21 | 26 | 16 | 20 | 25 | 15 | 16 | 22 | 31 | 14 | 9 | 30 | 27 | 0 | 0 | 0 | 0 | 19 | 25 | 28 | 15 | 8 | 29 | 9 | 14 | 27 | 0 | 0 | 24 | 15 | 17 | 10 | 25 | 26 | 41 |
Mac | 4 | 6 | 13 | 11 | 9 | 14 | 7 | 13 | 9 | 12 | 7 | 10 | 8 | 6 | 5 | 14 | 12 | 16 | 13 | 17 | 4 | 7 | 11 | 5 | 0 | 0 | 0 | 3 | 4 | 15 | 20 | 4 | 8 | 15 | 6 | 7 | 9 | 0 | 0 | 13 | 9 | 4 | 6 | 9 | 8 | 11 |
Linux | 4 | 6 | 8 | 15 | 16 | 10 | 6 | 2 | 10 | 7 | 9 | 12 | 10 | 4 | 4 | 17 | 9 | 15 | 11 | 14 | 6 | 9 | 12 | 7 | 0 | 0 | 0 | 3 | 13 | 13 | 10 | 7 | 2 | 11 | 7 | 5 | 9 | 0 | 0 | 11 | 7 | 12 | 8 | 11 | 12 | 11 |
Readme
- Source
- raw.githubusercontent.com
Sublime Text plugin: git
Git integration: it's pretty handy. Who knew, right?
For more information about what's supported, and how to install this, check the wiki.
Install
Package Control
The easiest way to install this is with Package Control.
- If you just went and installed Package Control, you probably need to restart Sublime Text before doing this next bit.
- Bring up the Command Palette (Command+Shift+p on OS X, Control+Shift+p on Linux/Windows).
- Select “Package Control: Install Package” (it'll take a few seconds)
- Select Git when the list appears.
Package Control will automatically keep Git up to date with the latest version.
Basic Usage
- Bring up the Command Palette (Command+Shift+p on OS X, Control+Shift+p on Linux/Windows).
- Start typing “Git” and select one of the recommended commands.
The rest
If you don't want to use Package Control, check the wiki for other installation methods on various platforms.
Troubleshooting
This package works by running commands as your system git
. As such, if you have problems with this package, first make sure that git is installed and configured correctly on your system.
You may want to make sure that the git
binary this plugin is using is the correct one, if you have multiple ones installed. Most git installation guides will be happy to walk you through configuring your system $PATH
appropriately.
If necessary, set the git_command
plugin preference to tell us where to look.
fatal: unable to auto-detect email address
Git isn't configured properly. Tell it who you are, by opening a command prompt and doing this:
git config --global user.email "you@example.com"
git config --global user.name "Your Name"
If you've done this and it's still complaining, you probably have multiple copies of git on your system which have different configuration locations, and the one which runs on your command line isn't the one which the shell $PATH
exposes to Sublime Text.
fatal: could not read Username for 'https://github.com': Device not configured
Git isn't configured to use a system-level ssh-agent, and so it's asking you for a username and password when you try to push / pull. The plugin doesn't know how to ask you for this information.
Set up a ssh-agent and this will stop happening.
Acknowledgements
This package contains: