Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions 01-git/01-git.tex
Original file line number Diff line number Diff line change
Expand Up @@ -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}
Expand All @@ -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 <feature-branch>}
\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}
Expand Down Expand Up @@ -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.
Expand Down