forked from zhaofeng-shu33/github-advanced
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.tex
166 lines (153 loc) · 4.32 KB
/
main.tex
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
\documentclass[notheorems,xetex]{beamer}
%\documentclass[UTF8]{ctexbeamer}
\usepackage{xeCJK}%preamble part
%\usepackage{showframe}
\usepackage{amsmath, amsthm, amssymb}
\usepackage{graphicx}
\usepackage{bm}
\usepackage{caption}
\usepackage{ragged2e}
\usepackage{multirow}
\usepackage{float}
\usepackage{color}
\usepackage{listings}
\input{code_style.tex}
%\usepackage[font=Helv,timeinterval=3]{tdclock}
\DeclareMathOperator*{\rgmax}{argmax}
\DeclareMathOperator*{\rgmin}{argmin}
\DeclareMathOperator{\tr}{tr}
%\setCJKmainfont{SimSun}[AutoFakeBold=false]
%\setsansfont{SimSun}
\setbeamertemplate{frametitle}[default][center]
\setbeamertemplate{footline}[frame number]
\setlength{\parindent}{0.8cm}
%\newcommand{\transpose}[1]{\ensuremath{#1^{\scriptscriptstyle T}}}
\usetheme{Lab2C}
\title{GitHub 高级用法介绍} % (optional, use only with long paper titles)
\author[赵丰]
{\quad {赵丰}\\ \and {zhaofeng-shu33}}
\institute[清华大学] % (optional, but mostly needed)
{\normalsize\quad
Lab2c 服务器使用培训
}
\date{\the\year 年 \the\month 月 \the\day 日}
%\AtBeginSubsection[]
%{
% \begin{frame}<beamer>{目录}
% \tableofcontents[currentsection,currentsubsection]
% \end{frame}
%}
\begin{document}
\frame{\titlepage}
\frame{\tableofcontents}
%\date{\hspace{1mm} \timemark}
\section{GitHub 中的个人与组织}
\begin{frame}{GitHub 个人主页}
\begin{itemize}
\item \url{https://github.com/your_github_id}
\item 活跃程度
\begin{figure}
\includegraphics[height=2.5cm]{activity.png}
\caption*{颜色越深,提交次数越多}
\end{figure}
\item 你关注的人与关注你的人
\begin{figure}
\includegraphics[height=1cm]{ff.png}
\end{figure}
\end{itemize}
\end{frame}
\begin{frame}{GitHub 组织}
\begin{figure}
\centering
\includegraphics[height=2cm]{org.png}
\end{figure}
\begin{itemize}
\item 我们的组织 ID: \textbf{mace\_cream}
\item 置顶的仓库: \textbf{clusterhowto}
\url{https://github.com/mace_cream/clusterhowto}
\item 接收邀请后,选择自己的可见性: \textbf{公开}或\textbf{仅内部成员可见}。
\end{itemize}
\end{frame}
\section{典型场景}
\frame{\tableofcontents[currentsection]}
\begin{frame}{如何倒退}
\begin{itemize}
\item 前提: 经常 commit
\item 倒退命令
\begin{enumerate}
\item 暂存当前修改: \texttt{git branch bad\_code}
\item 回退到想要的地方: \texttt{git reset --hard commit\_hash}
\end{enumerate}
\item 撤消倒退 \texttt{git reset --hard bad\_code}
\end{itemize}
\begin{figure}
\includegraphics[height=3.5cm]{example_reset.png}
\end{figure}
\end{frame}
\begin{frame}{如何使用 tag}
\begin{itemize}
\item tags 对应 GitHub 上的 Releases
\item 使用场景: 软件新版本的发布
\item 简单 tag 命令: \texttt{git tag v1.0}
\item 将本地的 tags 推到 GitHub 上: \texttt{git push --tags origin}
\end{itemize}
\begin{figure}
\includegraphics[height=4cm]{numpy_tags.png}
\caption{numpy 仓库中的 tags}
\end{figure}
\end{frame}
\section{实例分析}
\frame{\tableofcontents[currentsection]}
\begin{frame}[fragile]{merge 过程中正确解决 conflict}
\begin{itemize}
\item 两个不同的 commit 对同一行代码改动产生了冲突
\begin{figure}
\centering
\includegraphics[height=0.5cm]{conflict.png}
\end{figure}
\item 冲突复现
\end{itemize}
\begin{lstlisting}[language=bash,xleftmargin=.1\textwidth]
git clone https://github.com/wuhan2020/\
wuhan2020-frontend-react-app.git
git checkout 801a4e3 -b feature
git checkout 9d11a11 -b main
git merge feature
\end{lstlisting}
\end{frame}
\begin{frame}{冲突现象}
\begin{figure}
\centering
\includegraphics[height=6cm]{phenomenon.png}
\end{figure}
\end{frame}
\begin{frame}{冲突原因}
\begin{figure}
\centering
\includegraphics[height=7cm]{deps.png}
\end{figure}
\end{frame}
\begin{frame}{如何解决}
\begin{itemize}
\item 使用 IDE 工具选择接受哪一部分的改动
\end{itemize}
\begin{figure}
\includegraphics[height=2.5cm]{accept_incoming.png}
\end{figure}
\end{frame}
\begin{frame}{最终效果}
\begin{figure}
\includegraphics[height=2.5cm]{recover_changes.png}
\caption{复现效果}
\end{figure}
\begin{center}
feature 分支仅贡献一处改动
\end{center}
\begin{figure}
\includegraphics[height=2.5cm]{original.png}
\caption{原有效果}
\end{figure}
\end{frame}
%\begin{frame}{GitHub Action}
%\end{frame}
\end{document}