10 lines
213 B
Bash
Executable File
10 lines
213 B
Bash
Executable File
#!/bin/bash
|
|
git branch DEV origin/DEV
|
|
git switch DEV
|
|
git rebase origin/master
|
|
cat translations.txt | grep -ve "[<>=]" > $$.dat
|
|
mv $$.dat translations.txt
|
|
git add translations.txt
|
|
git rebase --continue
|
|
git push -f
|