Git
Plugin for some git integration into sublime text
Details
Installs
- Total 1.22M
- Win 564K
- Mac 370K
- Linux 284K
Jan 21 | Jan 20 | Jan 19 | Jan 18 | Jan 17 | Jan 16 | Jan 15 | Jan 14 | Jan 13 | Jan 12 | Jan 11 | Jan 10 | Jan 9 | Jan 8 | Jan 7 | Jan 6 | Jan 5 | Jan 4 | Jan 3 | Jan 2 | Jan 1 | Dec 31 | Dec 30 | Dec 29 | Dec 28 | Dec 27 | Dec 26 | Dec 25 | Dec 24 | Dec 23 | Dec 22 | 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 | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Windows | 3 | 31 | 25 | 31 | 18 | 22 | 23 | 28 | 15 | 18 | 13 | 23 | 19 | 20 | 13 | 20 | 22 | 15 | 17 | 15 | 20 | 20 | 26 | 11 | 10 | 27 | 17 | 16 | 18 | 27 | 14 | 17 | 12 | 28 | 27 | 32 | 29 | 19 | 9 | 25 | 17 | 28 | 21 | 26 | 16 | 20 |
Mac | 0 | 6 | 9 | 6 | 10 | 10 | 16 | 12 | 12 | 9 | 5 | 9 | 12 | 18 | 20 | 4 | 7 | 6 | 9 | 13 | 6 | 11 | 9 | 5 | 11 | 8 | 8 | 7 | 9 | 11 | 7 | 7 | 6 | 13 | 11 | 9 | 14 | 7 | 13 | 9 | 12 | 7 | 10 | 8 | 6 | 5 |
Linux | 1 | 7 | 4 | 7 | 13 | 13 | 11 | 8 | 8 | 8 | 8 | 8 | 10 | 13 | 16 | 6 | 4 | 4 | 9 | 16 | 8 | 2 | 1 | 5 | 3 | 9 | 3 | 3 | 11 | 10 | 9 | 8 | 6 | 8 | 15 | 16 | 10 | 6 | 2 | 10 | 7 | 9 | 12 | 10 | 4 | 4 |
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: