“https://t.co/3nVRuDZkHH Meethi Tikyan Recipe کونڈےکی میٹھی ٹکیاں”
Meethi Tikyan
seen from United States
seen from China
seen from Sri Lanka
seen from Russia
seen from China

seen from Thailand
seen from Italy
seen from Japan

seen from Malaysia
seen from Japan

seen from United States
seen from China

seen from Italy
seen from United Kingdom

seen from Russia
seen from United States
seen from Italy

seen from United States

seen from Malaysia
seen from Germany
“https://t.co/3nVRuDZkHH Meethi Tikyan Recipe کونڈےکی میٹھی ٹکیاں”
Meethi Tikyan
Best Route by The U.S. Army on Flickr.
Git Config Hacks
TL; DR - Skip to the end of the page for a quick look at my git config file
Basic hacks
Colors in Git:
Stating the obvious, git supports colors on any ANSI terminal. You can turn on git colors using
[color] branch = auto diff = auto status = auto [color "branch"] current = yellow reverse local = yellow remote = green [color "diff"] meta = yellow bold frag = magenta bold old = red bold new = green bold [color "status"] added = yellow changed = green untracked = cyan
This gives nice tangy colors to your git command outputs.
Change your pretty log format:
Spice up your git log by showing relative times like (4 hours ago than 2010-20-20 10:34 PM). Also the pretty format config below will squash it into a single nicely readable line
[format] pretty = format:%Cred%h%Creset - %Cgreen%an -%C(yellow)%d%Creset %s %Cgreen(%cr)%Creset date = relative
Handy hacks
Changes made yesterday:
Git has got a handy command to see the changes that were committed yesterday. You can see it by typing
git diff "@{yesterday}"
Files changed in a each commit:
Sometimes it's handy to look at the files changed in each commit.
git whatchanged
Fairly Advanced hacks
For abbreviated commit log with branch and tag information add the following alias to your ~/.gitconfig
log1 = log --pretty=oneline --abbrev-commit --decorate
To see the log with graph information and branches/tags where the commit is present, Add the folllowing alias to your ~/.gitconfig
lgn = "!f() { git log --graph --pretty=format:'%Cred%H%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --date=relative $@ | git name-rev --stdin --name-only ; } ; f"
My DotFile
For those who are interested, here is my .gitconfig file
[color] branch = auto diff = auto status = auto [color "branch"] current = yellow reverse local = yellow remote = green [color "diff"] meta = yellow bold frag = magenta bold old = red bold new = green bold [color "status"] added = yellow changed = green untracked = cyan [alias] y = diff "@{yesterday}" w = whatchanged c = commit st = status dc = diff --cached co = checkout lg = log --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr)%Creset' --abbrev-commit --date=relative lgn = "!f() { git log --graph --pretty=format:'%Cred%H%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --date=relative $@ | git name-rev --stdin --name-only ; } ; f" log1 = log --pretty=oneline --abbrev-commit --decorate [format] pretty = format:%Cred%h%Creset - %Cgreen%an -%C(yellow)%d%Creset %s %Cgreen(%cr)%Creset date = relative
FET security force.
U.S. Army Sgt. Eric Rothenberger, a native of Phoenix, Ariz., and team leader assigned to 3rd Platoon, Alpha Battery, 2nd Battalion (Airborne), 377th Parachute Field Artillery Regiment, checks his sights while pulling security at an alleyway in the village of Kunday. PFAR’s mission was to facilitate members of the female engagement team as they conducted key leader engagements to promote a female health education program.
(Photo by Staff Sergeant Jason Epperson, 7 July 2012 via DVIDS.)