Skip to content

Instantly share code, notes, and snippets.

View aydi-nebil's full-sized avatar
☝️
كن مع الله و لا تبالي

Nebil Aydi aydi-nebil

☝️
كن مع الله و لا تبالي
  • Nebras Solutions Int.
  • Tunisia
View GitHub Profile
@aydi-nebil
aydi-nebil / git-pull-all
Created February 6, 2018 14:56 — forked from grimzy/git-pull-all
Git pull all remote branches
#!/usr/bin/env bash
git branch -r | grep -v '\->' | while read remote; do git branch --track "${remote#origin/}" "$remote"; done
git fetch --all
git pull --all
from termcolor import colored
mark = '*'
width = 110
height = 30
red = int(height /3)
for i in range(1,height):
x = 0