From 861b732f1979bf1b2a29d514c4620cb9c461fec8 Mon Sep 17 00:00:00 2001 From: Arseniy Obolenskiy Date: Fri, 24 Oct 2025 23:35:11 +0200 Subject: [PATCH] Rename 'master' branch to 'main' in 01-git --- 01-git/01-git.tex | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/01-git/01-git.tex b/01-git/01-git.tex index e222de6..c4ae358 100644 --- a/01-git/01-git.tex +++ b/01-git/01-git.tex @@ -326,9 +326,9 @@ \section{Advanced Git Operations} \section{Git workflows overview} -\begin{frame}{Push to Master (Linear history approach)} +\begin{frame}{Push to main (Linear history approach)} \begin{itemize} - \item All changes are made directly to the \texttt{master} branch. + \item All changes are made directly to the \texttt{main} branch. \item Simplest workflow, suitable for small projects. \item Potential issues: \begin{itemize} @@ -345,13 +345,13 @@ \section{Git workflows overview} \begin{itemize} \item Isolates development work. \item Facilitates code reviews. - \item Safe integration into \texttt{master} after testing. + \item Safe integration into \texttt{main} after testing. \end{itemize} \item Workflow: \begin{enumerate} \item Create a new branch: \texttt{git checkout -b } \item Develop and commit changes on the feature branch. - \item Merge back into \texttt{master} when ready. + \item Merge back into \texttt{main} when ready. \end{enumerate} \end{itemize} \end{frame} @@ -410,7 +410,7 @@ \section{Git workflows overview} \item A robust branching model for managing releases. \item Defines specific branches: \begin{itemize} - \item \textbf{master} --- contains production-ready code. + \item \textbf{main} --- contains production-ready code. \item \textbf{develop} --- integration branch for features. \item \textbf{feature branches} --- for new features. \item \textbf{release branches} --- prepare for a new production release.