mirror of
https://gitlab.winehq.org/wine/wine-staging.git
synced 2024-11-21 16:46:54 -08:00
6 lines
131 B
Bash
6 lines
131 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
sha=`git -C ./staging/wine/ rev-parse HEAD`
|
||
|
echo $sha > ./staging/upstream-commit
|
||
|
git commit -am "Rebase against $sha."
|