Warning, /plasma/lightdm-kde-greeter/RELEASE_CHECK_LIST is written in an unsupported language. File is not indexed.

0001 # Create branch if necessary
0002 git checkout -b v$x.$y
0003 
0004 # Or switch to the current branch
0005 git checkout v$x.$y
0006 
0007 # Verify copy is clean and up to date
0008 git status
0009 git pull
0010 
0011 # Update NEWS
0012 
0013 # Bump version in CMakeLists.txt
0014 # Bump version in theme.rc files
0015 
0016 # Commit
0017 
0018 # Create tarball
0019 make distcheck
0020 #This tarball will be in the build directory
0021 
0022 # Test
0023 
0024 # If ok, create tag
0025 git tag -a v$x.$y.$z
0026 
0027 # Push
0028 git push
0029 git push --tags
0030 
0031 # Merge back to master
0032 git checkout master
0033 git merge --no-ff v$x.$y
0034 
0035 # Push
0036 git push
0037 
0038 # Upload to KDE FTP server
0039