7 lines
103 B
Bash
Executable File
7 lines
103 B
Bash
Executable File
#!/bin/sh
|
|
|
|
git fetch upstream
|
|
git checkout master
|
|
git rebase upstream/master
|
|
git push -f origin master
|