File indexing completed on 2024-05-12 15:55:27

0001 #!/bin/sh -e
0002 # SPDX-FileCopyrightText: none
0003 # SPDX-License-Identifier: CC0-1.0
0004 # Sync the master branch with 5.x (the tracking branch for neon/dev-stable)
0005 
0006 echo "=== Updating Neon/dev-stable branch (5.x) ==="
0007 git checkout 5.x
0008 git pull
0009 git merge master
0010 git push
0011 git checkout master