Git projects is a package for Atom, which allows you to quickly list and open your local git repositories.
Simply run the following command:
apm install git-projects
Or find the package in Atom → Settings → Install and search for "git-projects"
Press ctrl + alt + o
or type Git Projects in the Command Palette.
Key | Default value | Possible values |
---|---|---|
rootPath |
~/ |
One or more directories containing projects, sep. by ; |
sortBy |
"Project name" |
"Project name" , "Last modification date" , "Size" |
showSubRepos |
false |
true , false |
openInDevMode |
false |
true , false |
Git projects will read the content of any .git-project
file located at the root of your Git repository (project).
You can set a custom title for any project that will be shown in the list view.
Here is an example:
{
"title": "Project Title"
}
If you don't want a project to be listed, add a .git-project
file at its root with the following content:
{
"ignored": true
}
More options will be available in the future.
- Fork it ( https://github.com/prrrnd/atom-git-projects/fork )
- 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 a new Pull Request
Released under the MIT License.