summaryrefslogtreecommitdiff
path: root/devmod
blob: b44f15ca85cd1ed9f1163e8834286bfbe8e0fd88 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/usr/bin/env bash

fetch_portage_tree() {
	cd /usr/portage && git init
	git remote add origin git://anongit.gentoo.org/repo/gentoo.git
	git pull --depth=1 origin master
	git branch -u origin/master master
}

main() {
	fetch_portage_tree
}

main