log --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit
To configure as an alias git lol
:
git config --global alias.lol "log --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit"
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
from sqlalchemy import create_engine, Table, Column, Integer, Unicode, MetaData, String, Text, update, and_, select, func, types | |
# create engine, reflect existing columns, and create table object for oldTable | |
srcEngine = create_engine('mysql+mysqldb://username:[email protected]/database') # change this for your source database | |
srcEngine._metadata = MetaData(bind=srcEngine) | |
srcEngine._metadata.reflect(srcEngine) # get columns from existing table | |
srcTable = Table('oldTable', srcEngine._metadata) | |
# create engine and table object for newTable | |
destEngine = create_engine('mysql+mysqldb://username:password@localhost/database') # change this for your destination database |