Author:
erics, November 2nd, 2020
|
|
clear; printf '\e[3J' && log show --predicate 'subsystem == "com.apple.TimeMachine"' --info --last 24h | grep -F 'eMac' | grep -Fv 'etat' | awk -F']' '{print substr($0,1,19), $NF}' |
Categories: How-To's, Technology Tags: cli, Extract, howto, Log, Logs, Script, Shell, Terminal, Time Machine, tips, view
|
No comments
Author:
erics, October 29th, 2020
Show All Branches, Local and Remote
Show Local Branches
Show Remote Branches
To fetch all remote branches locally
|
|
git branch -r | grep -v '\->' | sed "s,\x1B\[[0-9;]*[a-zA-Z],,g" | while read remote; do git branch --track "${remote#origin/}" "$remote"; done git fetch --all git pull --all |
Categories: How-To's, Technology Tags: All, Branch, Branches, Display, git, git branch, git branch -a, git fetch, git pull, local, remote, Show, track, view
|
No comments
Author:
erics, July 4th, 2013
|
|
cd {repository_directory} git remote -v show |
Categories: How-To's, Technology Tags: git, howto, origin, remote, Show, tips, view
|
No comments