GitAutoCommit
Enables auto-commit for selected Git repos (install Git plugin first)
Details
Installs
- Total 5K
- Win 3K
- Mac 1K
- Linux 1K
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 | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Windows | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 2 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 |
Mac | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Linux | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Readme
- Source
- raw.githubusercontent.com
Installation
- Install Package Control if you don't have it yet
- Install
Git
plugin (required)
Shift + CMD + P -> Install Package -> Git
- Install
GitAutoCommit
Shift + CMD + P -> Install Package -> GitAutoCommit
Why auto-committing anything at all?
I like using Sublime Text as a buffer for:
- working with text from clipboard,
- or writing random notes in the way only I can understand
Such notes usually change a lot during a day, and I often need to find a piece of text I had in there.
This little plugin helps tracking a history of such notes automatically. It stores the history in a Git repo.
How it works?
You create new Git repo for your notes with an empty file .sublime-text-git-autocommit
.
This way plugin knows that it should enable auto-commits for files in this repo.
Changes committed when you either: * saved a file in your Git repo, * or after you made changes to the files (in a 30 seconds delay).
Every changed file added & committed separately with commit message like:
Auto-committing 'TODO.txt'
How to use?
- Create new Git repository for your temporary files
mkdir ~/Documents/Notes
cd ~/Documents/Notes
git init
- Add empty file with name
.sublime-text-git-autocommit
to the root folder to activate this plugin
touch .sublime-text-git-autocommit
git commit -am "Commit .sublime-text-git-autocommit"
- Create one or more text files at the same folder and make your notes in them
touch TODO
touch Clipboard
- All changes made via Sublime to these files will be committed automatically (nested folders ignored)
How to view history?
Use git log -p
.
Or publish your repo as GitHub Gist and use its diff viewer.
To publish as GitHub Gist:
- Create new private Gist
- Copy git clone URL
- From the root folder of your git repo
git remote add origin https://gist.github.com/YOUR_GIST_ID_HERE.git
git remote -v
git branch --set-upstream-to=origin/master master
git pull
- Push your changes to Gist manually from time-to-time
“Shift+CMD+P” -> type “Git Push” -> Enter 5. View diffs on GitHub
GitHub 2FA
If you enabled GitHub's 2-Factor Authentication then you need to use access token to push to your Gist repo from command line.
I found Gist Tool helpful for this purpose.
brew install gist
gist --login
cat ~/.gist
Once you have your access token use it as a username when GitHub asks for credentials, leave password empty.
License
How to contribute?
- 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