Skip to content
Snippets Groups Projects
Commit 20a74dcf authored by Jan Kožusznik's avatar Jan Kožusznik
Browse files

init scripts

parent d83f39bd
Branches
No related merge requests found
init 0 → 100755
#!/usr/bin/env bash
remote_add () {
git remote add $1 https://git.cs.vsb.cz/vyuka-koz01/java-1/2021/$1.git
}
remote_add lab01
remote_add lab02
remote_add lab03
remote_add lab04
\ No newline at end of file
publish 0 → 100755
#!/usr/bin/env bash
push_remote () {
git push -f $1 $1:master
}
push_remote lab01
push_remote lab02
push_remote lab03
push_remote lab04
\ No newline at end of file
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment