Commands to get commit statistics for a Git repository from the command line -
using git log
, git shortlog
and friends.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File: APPNOTE.TXT - .ZIP File Format Specification | |
Version: 6.3.4 | |
Status: Final - replaces version 6.3.3 | |
Revised: October 1, 2014 | |
Copyright (c) 1989 - 2014 PKWARE Inc., All Rights Reserved. | |
1.0 Introduction | |
--------------- | |
1.1 Purpose |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
de | |
a | |
o | |
que | |
e | |
do | |
da | |
em | |
um | |
para |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import os | |
from myapp import app | |
secret_key = os.environ.get('SECRET_KEY', None) | |
if not secret_key: | |
raise ValueError('You must have "SECRET_KEY" variable') | |
app.config['SECRET_KEY'] = secret_key |