20 lines
334 B
Makefile
20 lines
334 B
Makefile
all:
|
|
@echo make build
|
|
@echo make add-remote
|
|
|
|
build:
|
|
gbp buildpackage
|
|
|
|
addRemote:
|
|
git remote add jcarr git@git.wit.org:jcarr/x11-xserver-utils.git
|
|
|
|
pushRemoteMaster:
|
|
git fetch jcarr
|
|
git commit -a
|
|
git push --set-upstream jcarr master
|
|
|
|
# git branch riscv
|
|
# git checkout riscv
|
|
# hack & commit
|
|
# git push --set-upstream jcarr riscv
|