summaryrefslogtreecommitdiff
path: root/.local/bin/wstart
blob: 9cc99d6dfd4f4191da7bcebe6f5220d52776649c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/sh

repo="$(echo "$1" | sed 's/\.git//;s/.*\///;')"

git clone "$1" "$repo/repo"

cd "$repo/repo"

# Get the main/master branch upstream from the cloned repo
master="$(git branch --show-curent)"

cd .. && mv repo "$master"