forked from brython-dev/brython
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
9acb805
commit 54ea3ef
Showing
3 changed files
with
102 additions
and
0 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,78 @@ | ||
# Custom Useful Git configs | ||
# USER AUTH ################################################################### | ||
#[user] | ||
# name = Your Real Name Here | ||
# email = [email protected] | ||
#[github] | ||
# user = YourGitHubUser | ||
|
||
|
||
# Git Core #################################################################### | ||
#[core] | ||
# safecrlf = warn | ||
# autocrlf = input # input on Linux, auto on Windows | ||
# compression = 9 | ||
# loosecompression = 9 | ||
# askpass = ssh-askpass # Use a GUI dialog to Ask Password on Linux | ||
# whitespace = fix,-indent-with-non-tab,trailing-space,cr-at-eol,tab-in-indent,tabwidth=4 | ||
|
||
|
||
# Credential Helper, dont ask password every time ############################# | ||
[credential] | ||
helper = cache | ||
# helper = osxkeychain # for Mac OsX | ||
|
||
|
||
# Autocorrect for mistyped git commands ####################################### | ||
[help] | ||
autocorrect = 1 | ||
|
||
|
||
# PRETTY COLORS ############################################################### | ||
[color] | ||
ui = auto | ||
diff = auto | ||
grep = auto | ||
interactive = auto | ||
showbranch = auto | ||
status = auto | ||
|
||
|
||
[color "branch"] | ||
current = yellow bold | ||
local = green bold | ||
remote = cyan bold | ||
|
||
|
||
[color "diff"] | ||
meta = yellow bold | ||
frag = magenta bold | ||
old = red blink | ||
new = green bold | ||
whitespace = red reverse | ||
|
||
|
||
[color "status"] | ||
added = green bold | ||
changed = yellow bold | ||
untracked = red bold | ||
|
||
|
||
# Security Check of SSL for HTTPS ############################################# | ||
[http] | ||
sslVerify = true | ||
|
||
|
||
# alias to commands ########################################################### | ||
[alias] | ||
assume = update-index --assume-unchanged | ||
unassume = update-index --no-assume-unchanged | ||
assumed = "!git ls-files -v | grep ^h | cut -c 3-" | ||
unassumeall = !git assumed | xargs git update-index --no-assume-unchanged | ||
assumeall = "!git st -s | awk {'print $2'} | xargs git assume" | ||
# | ||
ours = "!f() { git checkout --ours $@ && git add $@; }; f" | ||
theirs = "!f() { git checkout --theirs $@ && git add $@; }; f" | ||
# | ||
whois = "!sh -c 'git log -i -1 --pretty=\"format:%an <%ae>\n\" --author=\"$1\"' -" | ||
whatis = show -s --pretty='tformat:%h (%s, %ad)' --date=short |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
# This are for Development only. | ||
|
||
|
||
# AutoFix Imports on Python files https://github.com/timothycrosley/isort | ||
isort | ||
|
||
|
||
# PEP8 Style Guide Best Practice | ||
pep8 | ||
|
||
|
||
# http://legacy.python.org/dev/peps/pep-0257 https://github.com/GreenSteam/pep257 | ||
pep257 |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
<head> | ||
<title>Brython</title> | ||
<meta charset=UTF-8> | ||
<meta name=robots content="index, follow"> | ||
<meta name=description content=Brython> | ||
<meta name=author content="Pierre Quentel"> | ||
<meta name=keywords content="Python, Brython"> | ||
<meta name=viewport content="width=device-width,initial-scale=1,maximum-scale=1"> | ||
<link rel="shortcut icon" href=brython.png type=image/x-icon > | ||
<noscript>Please enable Javascript to view this page correctly.</noscript> | ||
</head> |