diff --git a/rust/rhgitaly/src/gitlab/state.rs b/rust/rhgitaly/src/gitlab/state.rs
index 2c80b0782b36e8b248c683f4cc8e7cd7c05670df_cnVzdC9yaGdpdGFseS9zcmMvZ2l0bGFiL3N0YXRlLnJz..c81b8f78d8d149cf3f0ca22477357d4e994e7de0_cnVzdC9yaGdpdGFseS9zcmMvZ2l0bGFiL3N0YXRlLnJz 100644
--- a/rust/rhgitaly/src/gitlab/state.rs
+++ b/rust/rhgitaly/src/gitlab/state.rs
@@ -35,7 +35,7 @@
 use bytes::{Bytes, BytesMut};
 use std::io;
 use std::path::Path;
-use tokio::fs::File;
+use tokio::fs::{read, File};
 use tokio::io::{AsyncBufRead, AsyncBufReadExt, AsyncReadExt, BufReader};
 use tokio_stream::wrappers::LinesStream;
 use tokio_stream::StreamExt;
@@ -87,6 +87,18 @@
     InvalidNode(Vec<u8>),
 }
 
+/// Read the GitLab default branch information
+///
+/// This notion is stateful and repository specific (can be tweaked by users). It is independent
+/// from what Git and Mercurial would consider to be the default branch (a global setting at most).
+pub async fn get_gitlab_default_branch(
+    store_vfs: &Path,
+) -> Result<Option<Vec<u8>>, StateFileError> {
+    // Yes `..` is ugly, but in truth that file should be in the `store/` subdirectory
+    let path = store_vfs.join("../default_gitlab_branch");
+    Ok(io_error_not_found_as_none(read(&path).await)?)
+}
+
 /// A [`Decoder`] for the typed refs file format, allowing to stream [`TypedRef`]s.
 ///
 /// This can be used with [`FramedRead`] to turn any [`AsyncRead`]