Skip to content

Instantly share code, notes, and snippets.

@sndsabin
sndsabin / git-checkout-all-branches.sh
Created August 15, 2020 11:44 — forked from ElfSundae/git-checkout-all-branches.sh
Git checkout all remote branches
#!/bin/bash
remote=origin ; for brname in `git branch -r | grep $remote | grep -v master | grep -v HEAD | awk '{gsub(/^[^\/]+\//,"",$1); print $1}'`; do git branch --track $brname $remote/$brname || true; done 2>/dev/null
@sndsabin
sndsabin / dhcd-resnet50.ipynb
Last active November 22, 2020 17:11
DHCD Dataset ResNet50
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.