11 lines
238 B
Bash
Executable File
11 lines
238 B
Bash
Executable File
#!/bin/sh
|
|
|
|
cd ..
|
|
git remote add upstream https://github.com/freeminer/freeminer.git
|
|
git fetch --all
|
|
git pull
|
|
( git merge --no-edit upstream/master | grep -i "conflict" ) && exit
|
|
git push
|
|
git submodule update --init --recursive
|
|
git status
|