mirror of
https://github.com/ejwa/gitinspector.git
synced 2024-11-14 07:41:07 +01:00
Added a new gitinspector.py entry script.
This commit is contained in:
parent
59d9e5c7ae
commit
e9eab37c83
3 changed files with 26 additions and 3 deletions
|
@ -7,8 +7,8 @@ certain conditions; see the accompanying LICENSE.txt file for further details.
|
|||
For questions regarding gitinspector you can contact the current maintainer
|
||||
in charge at gitinspector@ejwa.se.
|
||||
|
||||
To run gitinspector; please start it via the gitinspector/gitinspector.py
|
||||
script. Use the -h or --help flags to get help about available options.
|
||||
To run gitinspector; please start it via the gitinspector.py script. Use
|
||||
the -h or --help flags to get help about available options.
|
||||
|
||||
It is also possible to set gitinspector options using the "git config"
|
||||
command. Refer to the project page at https://github.com/ejwa/gitinspector
|
||||
|
|
24
gitinspector.py
Executable file
24
gitinspector.py
Executable file
|
@ -0,0 +1,24 @@
|
|||
#!/usr/bin/env python
|
||||
# coding: utf-8
|
||||
#
|
||||
# Copyright © 2015 Ejwa Software. All rights reserved.
|
||||
#
|
||||
# This file is part of gitinspector.
|
||||
#
|
||||
# gitinspector is free software: you can redistribute it and/or modify
|
||||
# it under the terms of the GNU General Public License as published by
|
||||
# the Free Software Foundation, either version 3 of the License, or
|
||||
# (at your option) any later version.
|
||||
#
|
||||
# gitinspector is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
# GNU General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU General Public License
|
||||
# along with gitinspector. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
from gitinspector import gitinspector
|
||||
|
||||
if __name__ == "__main__":
|
||||
gitinspector.main()
|
|
@ -1,4 +1,3 @@
|
|||
#!/usr/bin/env python
|
||||
# coding: utf-8
|
||||
#
|
||||
# Copyright © 2012-2015 Ejwa Software. All rights reserved.
|
||||
|
|
Loading…
Reference in a new issue