\documentclass[10pt,a4paper]{article} % Packages \usepackage{fancyhdr} % For header and footer \usepackage{multicol} % Allows multicols in tables \usepackage{tabularx} % Intelligent column widths \usepackage{tabulary} % Used in header and footer \usepackage{hhline} % Border under tables \usepackage{graphicx} % For images \usepackage{xcolor} % For hex colours %\usepackage[utf8x]{inputenc} % For unicode character support \usepackage[T1]{fontenc} % Without this we get weird character replacements \usepackage{colortbl} % For coloured tables \usepackage{setspace} % For line height \usepackage{lastpage} % Needed for total page number \usepackage{seqsplit} % Splits long words. %\usepackage{opensans} % Can't make this work so far. Shame. Would be lovely. \usepackage[normalem]{ulem} % For underlining links % Most of the following are not required for the majority % of cheat sheets but are needed for some symbol support. \usepackage{amsmath} % Symbols \usepackage{MnSymbol} % Symbols \usepackage{wasysym} % Symbols %\usepackage[english,german,french,spanish,italian]{babel} % Languages % Document Info \author{jtanmay.dev} \pdfinfo{ /Title (git-cheat-sheet.pdf) /Creator (Cheatography) /Author (jtanmay.dev) /Subject (Git Cheat Sheet) } % Lengths and widths \addtolength{\textwidth}{6cm} \addtolength{\textheight}{-1cm} \addtolength{\hoffset}{-3cm} \addtolength{\voffset}{-2cm} \setlength{\tabcolsep}{0.2cm} % Space between columns \setlength{\headsep}{-12pt} % Reduce space between header and content \setlength{\headheight}{85pt} % If less, LaTeX automatically increases it \renewcommand{\footrulewidth}{0pt} % Remove footer line \renewcommand{\headrulewidth}{0pt} % Remove header line \renewcommand{\seqinsert}{\ifmmode\allowbreak\else\-\fi} % Hyphens in seqsplit % This two commands together give roughly % the right line height in the tables \renewcommand{\arraystretch}{1.3} \onehalfspacing % Commands \newcommand{\SetRowColor}[1]{\noalign{\gdef\RowColorName{#1}}\rowcolor{\RowColorName}} % Shortcut for row colour \newcommand{\mymulticolumn}[3]{\multicolumn{#1}{>{\columncolor{\RowColorName}}#2}{#3}} % For coloured multi-cols \newcolumntype{x}[1]{>{\raggedright}p{#1}} % New column types for ragged-right paragraph columns \newcommand{\tn}{\tabularnewline} % Required as custom column type in use % Font and Colours \definecolor{HeadBackground}{HTML}{333333} \definecolor{FootBackground}{HTML}{666666} \definecolor{TextColor}{HTML}{333333} \definecolor{DarkBackground}{HTML}{208AF5} \definecolor{LightBackground}{HTML}{F1F7FE} \renewcommand{\familydefault}{\sfdefault} \color{TextColor} % Header and Footer \pagestyle{fancy} \fancyhead{} % Set header to blank \fancyfoot{} % Set footer to blank \fancyhead[L]{ \noindent \begin{multicols}{3} \begin{tabulary}{5.8cm}{C} \SetRowColor{DarkBackground} \vspace{-7pt} {\parbox{\dimexpr\textwidth-2\fboxsep\relax}{\noindent \hspace*{-6pt}\includegraphics[width=5.8cm]{/web/www.cheatography.com/public/images/cheatography_logo.pdf}} } \end{tabulary} \columnbreak \begin{tabulary}{11cm}{L} \vspace{-2pt}\large{\bf{\textcolor{DarkBackground}{\textrm{Git Cheat Sheet}}}} \\ \normalsize{by \textcolor{DarkBackground}{jtanmay.dev} via \textcolor{DarkBackground}{\uline{cheatography.com/34729/cs/10893/}}} \end{tabulary} \end{multicols}} \fancyfoot[L]{ \footnotesize \noindent \begin{multicols}{3} \begin{tabulary}{5.8cm}{LL} \SetRowColor{FootBackground} \mymulticolumn{2}{p{5.377cm}}{\bf\textcolor{white}{Cheatographer}} \\ \vspace{-2pt}jtanmay.dev \\ \uline{cheatography.com/jtanmay-dev} \\ \end{tabulary} \vfill \columnbreak \begin{tabulary}{5.8cm}{L} \SetRowColor{FootBackground} \mymulticolumn{1}{p{5.377cm}}{\bf\textcolor{white}{Cheat Sheet}} \\ \vspace{-2pt}Not Yet Published.\\ Updated 3rd May, 2018.\\ Page {\thepage} of \pageref{LastPage}. \end{tabulary} \vfill \columnbreak \begin{tabulary}{5.8cm}{L} \SetRowColor{FootBackground} \mymulticolumn{1}{p{5.377cm}}{\bf\textcolor{white}{Sponsor}} \\ \SetRowColor{white} \vspace{-5pt} %\includegraphics[width=48px,height=48px]{dave.jpeg} Measure your website readability!\\ www.readability-score.com \end{tabulary} \end{multicols}} \begin{document} \raggedright \raggedcolumns % Set font size to small. Switch to any value % from this page to resize cheat sheet text: % www.emerson.emory.edu/services/latex/latex_169.html \footnotesize % Small font. \begin{multicols*}{2} \begin{tabularx}{8.4cm}{x{1.44 cm} x{6.56 cm} } \SetRowColor{DarkBackground} \mymulticolumn{2}{x{8.4cm}}{\bf\textcolor{white}{Git Daily Commands}} \tn % Row 0 \SetRowColor{LightBackground} g & git \tn % Row Count 1 (+ 1) % Row 1 \SetRowColor{white} gcl & git clone -{}-recursive \tn % Row Count 2 (+ 1) % Row 2 \SetRowColor{LightBackground} gco & git checkout \tn % Row Count 3 (+ 1) % Row 3 \SetRowColor{white} gcb & git checkout -b \tn % Row Count 4 (+ 1) % Row 4 \SetRowColor{LightBackground} gcm & git checkout master \tn % Row Count 5 (+ 1) % Row 5 \SetRowColor{white} gcd & git checkout develop \tn % Row Count 6 (+ 1) % Row 6 \SetRowColor{LightBackground} gl & git pull \tn % Row Count 7 (+ 1) % Row 7 \SetRowColor{white} gup & git pull -{}-rebase \tn % Row Count 8 (+ 1) % Row 8 \SetRowColor{LightBackground} gst & git status \tn % Row Count 9 (+ 1) % Row 9 \SetRowColor{white} gss & git status -s \tn % Row Count 10 (+ 1) % Row 10 \SetRowColor{LightBackground} ga & git add \tn % Row Count 11 (+ 1) % Row 11 \SetRowColor{white} gaa & git add -{}-all \tn % Row Count 12 (+ 1) % Row 12 \SetRowColor{LightBackground} gc & git commit -v \tn % Row Count 13 (+ 1) % Row 13 \SetRowColor{white} gcam & git commit -a -m \tn % Row Count 14 (+ 1) % Row 14 \SetRowColor{LightBackground} gcmsg & git commit -m \tn % Row Count 15 (+ 1) % Row 15 \SetRowColor{white} gcs & git commit -S \tn % Row Count 16 (+ 1) % Row 16 \SetRowColor{LightBackground} gb & git branch \tn % Row Count 17 (+ 1) % Row 17 \SetRowColor{white} gba & git branch -a \tn % Row Count 18 (+ 1) % Row 18 \SetRowColor{LightBackground} gbd & git branch -d \tn % Row Count 19 (+ 1) % Row 19 \SetRowColor{white} gbr & git branch -{}-remote \tn % Row Count 20 (+ 1) % Row 20 \SetRowColor{LightBackground} gbnm & git branch -{}-no-merged \tn % Row Count 21 (+ 1) % Row 21 \SetRowColor{white} gcf & git config -{}-list \tn % Row Count 22 (+ 1) % Row 22 \SetRowColor{LightBackground} gclean & git clean -fd \tn % Row Count 23 (+ 1) % Row 23 \SetRowColor{white} \seqsplit{gpristine} & git reset -{}-hard \&\& git clean -dfx \tn % Row Count 25 (+ 2) % Row 24 \SetRowColor{LightBackground} gcount & git shortlog -sn \tn % Row Count 26 (+ 1) % Row 25 \SetRowColor{white} gd & git diff \tn % Row Count 27 (+ 1) % Row 26 \SetRowColor{LightBackground} gdca & git diff -{}-cached \tn % Row Count 28 (+ 1) % Row 27 \SetRowColor{white} gdw & git diff -{}-word-diff \tn % Row Count 29 (+ 1) % Row 28 \SetRowColor{LightBackground} gf & git fetch \tn % Row Count 30 (+ 1) \end{tabularx} \par\addvspace{1.3em} \vfill \columnbreak \begin{tabularx}{8.4cm}{x{1.44 cm} x{6.56 cm} } \SetRowColor{DarkBackground} \mymulticolumn{2}{x{8.4cm}}{\bf\textcolor{white}{Git Daily Commands (cont)}} \tn % Row 29 \SetRowColor{LightBackground} gfa & git fetch -{}-all -{}-prune \tn % Row Count 1 (+ 1) % Row 30 \SetRowColor{white} gfo & git fetch origin \tn % Row Count 2 (+ 1) % Row 31 \SetRowColor{LightBackground} gm & git merge \tn % Row Count 3 (+ 1) % Row 32 \SetRowColor{white} gp & git push \tn % Row Count 4 (+ 1) % Row 33 \SetRowColor{LightBackground} gr & git remote \tn % Row Count 5 (+ 1) % Row 34 \SetRowColor{white} grbi & git rebase -i \tn % Row Count 6 (+ 1) % Row 35 \SetRowColor{LightBackground} grh & git reset HEAD \tn % Row Count 7 (+ 1) % Row 36 \SetRowColor{white} grhh & git reset HEAD -{}-hard \tn % Row Count 8 (+ 1) % Row 37 \SetRowColor{LightBackground} grset & git remote set-url \tn % Row Count 9 (+ 1) % Row 38 \SetRowColor{white} gsps & git show -{}-pretty = short -{}-show-signature \tn % Row Count 11 (+ 2) % Row 39 \SetRowColor{LightBackground} gsta & git stash save \tn % Row Count 12 (+ 1) % Row 40 \SetRowColor{white} gstaa & git stash apply \tn % Row Count 13 (+ 1) % Row 41 \SetRowColor{LightBackground} gstd & git stash drop \tn % Row Count 14 (+ 1) % Row 42 \SetRowColor{white} gstl & git stash list \tn % Row Count 15 (+ 1) % Row 43 \SetRowColor{LightBackground} gstp & git stash pop \tn % Row Count 16 (+ 1) % Row 44 \SetRowColor{white} gts & git tag -s \tn % Row Count 17 (+ 1) \hhline{>{\arrayrulecolor{DarkBackground}}--} \end{tabularx} \par\addvspace{1.3em} \begin{tabularx}{8.4cm}{x{2.64 cm} x{5.36 cm} } \SetRowColor{DarkBackground} \mymulticolumn{2}{x{8.4cm}}{\bf\textcolor{white}{Git All Alias}} \tn % Row 0 \SetRowColor{LightBackground} g & git \tn % Row Count 1 (+ 1) % Row 1 \SetRowColor{white} ga & git add \tn % Row Count 2 (+ 1) % Row 2 \SetRowColor{LightBackground} gaa & git add -{}-all \tn % Row Count 3 (+ 1) % Row 3 \SetRowColor{white} gapa & git add -{}-patch \tn % Row Count 4 (+ 1) % Row 4 \SetRowColor{LightBackground} gb & git branch \tn % Row Count 5 (+ 1) % Row 5 \SetRowColor{white} gba & git branch -a \tn % Row Count 6 (+ 1) % Row 6 \SetRowColor{LightBackground} gbd & git branch -d \tn % Row Count 7 (+ 1) % Row 7 \SetRowColor{white} gbl & git blame -b -w \tn % Row Count 8 (+ 1) % Row 8 \SetRowColor{LightBackground} gbnm & git branch -{}-no-merged \tn % Row Count 9 (+ 1) % Row 9 \SetRowColor{white} gbr & git branch -{}-remote \tn % Row Count 10 (+ 1) % Row 10 \SetRowColor{LightBackground} gbs & git bisect \tn % Row Count 11 (+ 1) % Row 11 \SetRowColor{white} gbsb & git bisect bad \tn % Row Count 12 (+ 1) % Row 12 \SetRowColor{LightBackground} gbsg & git bisect good \tn % Row Count 13 (+ 1) % Row 13 \SetRowColor{white} gbsr & git bisect reset \tn % Row Count 14 (+ 1) % Row 14 \SetRowColor{LightBackground} gbss & git bisect start \tn % Row Count 15 (+ 1) % Row 15 \SetRowColor{white} gc & git commit -v \tn % Row Count 16 (+ 1) % Row 16 \SetRowColor{LightBackground} gc! & git commit -v -{}-amend \tn % Row Count 17 (+ 1) % Row 17 \SetRowColor{white} gca git commit -v -a & gca git commit -v -a \tn % Row Count 19 (+ 2) % Row 18 \SetRowColor{LightBackground} gca! & git commit -v -a -{}-amend \tn % Row Count 20 (+ 1) % Row 19 \SetRowColor{white} gcan! & git commit -v -a -{}-no-edit -{}-amend \tn % Row Count 22 (+ 2) % Row 20 \SetRowColor{LightBackground} gcans! & git commit -v -a -s -{}-no-edit -{}-amend \tn % Row Count 24 (+ 2) % Row 21 \SetRowColor{white} gcam & git commit -a -m \tn % Row Count 25 (+ 1) % Row 22 \SetRowColor{LightBackground} gcsm & git commit -s -m \tn % Row Count 26 (+ 1) % Row 23 \SetRowColor{white} gcb & git checkout -b \tn % Row Count 27 (+ 1) % Row 24 \SetRowColor{LightBackground} gcf & git config -{}-list \tn % Row Count 28 (+ 1) % Row 25 \SetRowColor{white} gcl & git clone -{}-recursive \tn % Row Count 29 (+ 1) % Row 26 \SetRowColor{LightBackground} gclean & git clean -fd \tn % Row Count 30 (+ 1) \end{tabularx} \par\addvspace{1.3em} \vfill \columnbreak \begin{tabularx}{8.4cm}{x{2.64 cm} x{5.36 cm} } \SetRowColor{DarkBackground} \mymulticolumn{2}{x{8.4cm}}{\bf\textcolor{white}{Git All Alias (cont)}} \tn % Row 27 \SetRowColor{LightBackground} gpristine & git reset -{}-hard \&\& git clean -dfx \tn % Row Count 2 (+ 2) % Row 28 \SetRowColor{white} gcm & git checkout master \tn % Row Count 3 (+ 1) % Row 29 \SetRowColor{LightBackground} gcd & git checkout develop \tn % Row Count 4 (+ 1) % Row 30 \SetRowColor{white} gcmsg & git commit -m \tn % Row Count 5 (+ 1) % Row 31 \SetRowColor{LightBackground} gco & git checkout \tn % Row Count 6 (+ 1) % Row 32 \SetRowColor{white} gcount & git shortlog -sn \tn % Row Count 7 (+ 1) % Row 33 \SetRowColor{LightBackground} gcp & git cherry-pick \tn % Row Count 8 (+ 1) % Row 34 \SetRowColor{white} gcpa & git cherry-pick -{}-abort \tn % Row Count 9 (+ 1) % Row 35 \SetRowColor{LightBackground} gcpc & git cherry-pick -{}-continue \tn % Row Count 10 (+ 1) % Row 36 \SetRowColor{white} gcs & git commit -S \tn % Row Count 11 (+ 1) % Row 37 \SetRowColor{LightBackground} gd & git diff \tn % Row Count 12 (+ 1) % Row 38 \SetRowColor{white} gdca & git diff -{}-cached \tn % Row Count 13 (+ 1) % Row 39 \SetRowColor{LightBackground} gdct & git describe -{}-tags `git rev-list -{}-tags -{}-max-count=1` \tn % Row Count 16 (+ 3) % Row 40 \SetRowColor{white} gdt & git diff-tree -{}-no-commit-id -{}-name-only -r \tn % Row Count 18 (+ 2) % Row 41 \SetRowColor{LightBackground} gdw & git diff -{}-word-diff \tn % Row Count 19 (+ 1) % Row 42 \SetRowColor{white} gf & git fetch \tn % Row Count 20 (+ 1) % Row 43 \SetRowColor{LightBackground} gfa & git fetch -{}-all -{}-prune \tn % Row Count 21 (+ 1) % Row 44 \SetRowColor{white} gfo & git fetch origin \tn % Row Count 22 (+ 1) % Row 45 \SetRowColor{LightBackground} gg & git gui citool \tn % Row Count 23 (+ 1) % Row 46 \SetRowColor{white} gga & git gui citool -{}-amend \tn % Row Count 24 (+ 1) % Row 47 \SetRowColor{LightBackground} ggpnp & git pull origin \$(current\_branch) \&\& git push origin \$(current\_branch) \tn % Row Count 27 (+ 3) % Row 48 \SetRowColor{white} ggpull & git pull origin \$(current\_branch) \tn % Row Count 29 (+ 2) % Row 49 \SetRowColor{LightBackground} ggl & git pull origin \$(current\_branch) \tn % Row Count 31 (+ 2) \end{tabularx} \par\addvspace{1.3em} \vfill \columnbreak \begin{tabularx}{8.4cm}{x{2.64 cm} x{5.36 cm} } \SetRowColor{DarkBackground} \mymulticolumn{2}{x{8.4cm}}{\bf\textcolor{white}{Git All Alias (cont)}} \tn % Row 50 \SetRowColor{LightBackground} ggpur & git pull -{}-rebase origin \$(current\_branch) \tn % Row Count 2 (+ 2) % Row 51 \SetRowColor{white} glum & git pull upstream master \tn % Row Count 3 (+ 1) % Row 52 \SetRowColor{LightBackground} ggpush & git push origin \$(current\_branch) \tn % Row Count 5 (+ 2) % Row 53 \SetRowColor{white} ggp & git push origin \$(current\_branch) \tn % Row Count 7 (+ 2) % Row 54 \SetRowColor{LightBackground} ggsup & git branch -{}-set-upstream-to=origin/\$(current\_branch) \tn % Row Count 10 (+ 3) % Row 55 \SetRowColor{white} gpsup & git push -{}-set-upstream origin \$(current\_branch) \tn % Row Count 12 (+ 2) % Row 56 \SetRowColor{LightBackground} gignore & git update-index -{}-assume-unchanged \tn % Row Count 14 (+ 2) % Row 57 \SetRowColor{white} gignored & git ls-files -v | grep "\textasciicircum{}:lower:" \tn % Row Count 16 (+ 2) % Row 58 \SetRowColor{LightBackground} \seqsplit{git-svn-dcommit-push} & git svn dcommit \&\& git push github master:svntrunk \tn % Row Count 18 (+ 2) % Row 59 \SetRowColor{white} gk & gitk -{}-all -{}-branches \tn % Row Count 19 (+ 1) % Row 60 \SetRowColor{LightBackground} gl & git pull \tn % Row Count 20 (+ 1) % Row 61 \SetRowColor{white} glg & git log -{}-stat -{}-max-count = 10 \tn % Row Count 22 (+ 2) % Row 62 \SetRowColor{LightBackground} glgg & git log -{}-graph -{}-max-count = 10 \tn % Row Count 24 (+ 2) % Row 63 \SetRowColor{white} glgga & git log -{}-graph -{}-decorate -{}-all \tn % Row Count 26 (+ 2) % Row 64 \SetRowColor{LightBackground} glo & git log -{}-oneline -{}-decorate -{}-color \tn % Row Count 28 (+ 2) % Row 65 \SetRowColor{white} glog & git log -{}-oneline -{}-decorate -{}-color -{}-graph \tn % Row Count 30 (+ 2) \end{tabularx} \par\addvspace{1.3em} \vfill \columnbreak \begin{tabularx}{8.4cm}{x{2.64 cm} x{5.36 cm} } \SetRowColor{DarkBackground} \mymulticolumn{2}{x{8.4cm}}{\bf\textcolor{white}{Git All Alias (cont)}} \tn % Row 66 \SetRowColor{LightBackground} glp & \_git\_log\_prettily (git log -{}-pretty=\$1) \tn % Row Count 2 (+ 2) % Row 67 \SetRowColor{white} gm & git merge \tn % Row Count 3 (+ 1) % Row 68 \SetRowColor{LightBackground} gmt & git mergetool -{}-no-prompt \tn % Row Count 4 (+ 1) % Row 69 \SetRowColor{white} gp & git push \tn % Row Count 5 (+ 1) % Row 70 \SetRowColor{LightBackground} gpoat & git push origin -{}-all \&\& git push origin -{}-tags \tn % Row Count 7 (+ 2) % Row 71 \SetRowColor{white} gr & git remote \tn % Row Count 8 (+ 1) % Row 72 \SetRowColor{LightBackground} grba & git rebase -{}-abort \tn % Row Count 9 (+ 1) % Row 73 \SetRowColor{white} grbc & git rebase -{}-continue \tn % Row Count 10 (+ 1) % Row 74 \SetRowColor{LightBackground} grbs & git rebase -{}-skip \tn % Row Count 11 (+ 1) % Row 75 \SetRowColor{white} grbi & git rebase -i \tn % Row Count 12 (+ 1) % Row 76 \SetRowColor{LightBackground} grh & git reset HEAD \tn % Row Count 13 (+ 1) % Row 77 \SetRowColor{white} grhh & git reset HEAD -{}-hard \tn % Row Count 14 (+ 1) % Row 78 \SetRowColor{LightBackground} grmv & git remote rename \tn % Row Count 15 (+ 1) % Row 79 \SetRowColor{white} grrm & git remote remove \tn % Row Count 16 (+ 1) % Row 80 \SetRowColor{LightBackground} grset & git remote set-url \tn % Row Count 17 (+ 1) % Row 81 \SetRowColor{white} grt & cd \$(git rev-parse -{}-show-toplevel || echo ".") \tn % Row Count 19 (+ 2) % Row 82 \SetRowColor{LightBackground} grup & git remote update \tn % Row Count 20 (+ 1) % Row 83 \SetRowColor{white} grv & git remote -v \tn % Row Count 21 (+ 1) % Row 84 \SetRowColor{LightBackground} gsd & git svn dcommit \tn % Row Count 22 (+ 1) % Row 85 \SetRowColor{white} gsps & git show -{}-pretty = short -{}-show-signature \tn % Row Count 24 (+ 2) % Row 86 \SetRowColor{LightBackground} gsr & git svn rebase \tn % Row Count 25 (+ 1) % Row 87 \SetRowColor{white} gss & git status -s \tn % Row Count 26 (+ 1) % Row 88 \SetRowColor{LightBackground} gst & git status \tn % Row Count 27 (+ 1) % Row 89 \SetRowColor{white} gsta & git stash save \tn % Row Count 28 (+ 1) % Row 90 \SetRowColor{LightBackground} gstaa & git stash apply \tn % Row Count 29 (+ 1) % Row 91 \SetRowColor{white} gstd & git stash drop \tn % Row Count 30 (+ 1) \end{tabularx} \par\addvspace{1.3em} \vfill \columnbreak \begin{tabularx}{8.4cm}{x{2.64 cm} x{5.36 cm} } \SetRowColor{DarkBackground} \mymulticolumn{2}{x{8.4cm}}{\bf\textcolor{white}{Git All Alias (cont)}} \tn % Row 92 \SetRowColor{LightBackground} gstl & git stash list \tn % Row Count 1 (+ 1) % Row 93 \SetRowColor{white} gstp & git stash pop \tn % Row Count 2 (+ 1) % Row 94 \SetRowColor{LightBackground} gsts & git stash show -{}-text \tn % Row Count 3 (+ 1) % Row 95 \SetRowColor{white} gts & git tag -s \tn % Row Count 4 (+ 1) % Row 96 \SetRowColor{LightBackground} gunignore & git update-index -{}-no-assume-unchanged \tn % Row Count 6 (+ 2) % Row 97 \SetRowColor{white} gunwip & git log -n 1 | grep -q -c "-{}-wip-{}-" \&\& git reset HEAD\textasciitilde{}1 \tn % Row Count 9 (+ 3) % Row 98 \SetRowColor{LightBackground} gup & git pull -{}-rebase \tn % Row Count 10 (+ 1) % Row 99 \SetRowColor{white} gvt & git verify-tag \tn % Row Count 11 (+ 1) % Row 100 \SetRowColor{LightBackground} gwch & git whatchanged -p -{}-abbrev-commit -{}-pretty = medium \tn % Row Count 13 (+ 2) % Row 101 \SetRowColor{white} gwip & git add -A; git ls-files -{}-deleted -z | xargs -r0 git rm; git commit -m "-{}-wip-{}-" \tn % Row Count 17 (+ 4) \hhline{>{\arrayrulecolor{DarkBackground}}--} \end{tabularx} \par\addvspace{1.3em} \begin{tabularx}{8.4cm}{x{1.44 cm} x{6.56 cm} } \SetRowColor{DarkBackground} \mymulticolumn{2}{x{8.4cm}}{\bf\textcolor{white}{Git Daily Commands (copy)}} \tn % Row 0 \SetRowColor{LightBackground} g & git \tn % Row Count 1 (+ 1) % Row 1 \SetRowColor{white} ga & git add \tn % Row Count 2 (+ 1) % Row 2 \SetRowColor{LightBackground} gaa & git add -{}-all \tn % Row Count 3 (+ 1) % Row 3 \SetRowColor{white} gapa & git add -{}-patch \tn % Row Count 4 (+ 1) % Row 4 \SetRowColor{LightBackground} gb & git branch \tn % Row Count 5 (+ 1) % Row 5 \SetRowColor{white} gba & git branch -a \tn % Row Count 6 (+ 1) % Row 6 \SetRowColor{LightBackground} gbd & git branch -d \tn % Row Count 7 (+ 1) % Row 7 \SetRowColor{white} gbl & git blame -b -w \tn % Row Count 8 (+ 1) % Row 8 \SetRowColor{LightBackground} gbnm & git branch -{}-no-merged \tn % Row Count 9 (+ 1) % Row 9 \SetRowColor{white} gbr & git branch -{}-remote \tn % Row Count 10 (+ 1) % Row 10 \SetRowColor{LightBackground} gbsb & git bisect bad \tn % Row Count 11 (+ 1) % Row 11 \SetRowColor{white} gbsg & git bisect good \tn % Row Count 12 (+ 1) % Row 12 \SetRowColor{LightBackground} gbsr & git bisect reset \tn % Row Count 13 (+ 1) % Row 13 \SetRowColor{white} gbss & git bisect start \tn % Row Count 14 (+ 1) % Row 14 \SetRowColor{LightBackground} gc & git commit -v \tn % Row Count 15 (+ 1) % Row 15 \SetRowColor{white} gcam & git commit -a -m \tn % Row Count 16 (+ 1) % Row 16 \SetRowColor{LightBackground} gcsm & git commit -s -m \tn % Row Count 17 (+ 1) % Row 17 \SetRowColor{white} gcb & git checkout -b \tn % Row Count 18 (+ 1) % Row 18 \SetRowColor{LightBackground} gcf & git config -{}-list \tn % Row Count 19 (+ 1) % Row 19 \SetRowColor{white} gcl & git clone -{}-recursive \tn % Row Count 20 (+ 1) % Row 20 \SetRowColor{LightBackground} gclean & git clean -fd \tn % Row Count 21 (+ 1) % Row 21 \SetRowColor{white} \seqsplit{gpristine} & git reset -{}-hard \&\& git clean -dfx \tn % Row Count 23 (+ 2) % Row 22 \SetRowColor{LightBackground} gcm & git checkout master \tn % Row Count 24 (+ 1) % Row 23 \SetRowColor{white} gcd & git checkout develop \tn % Row Count 25 (+ 1) % Row 24 \SetRowColor{LightBackground} gcmsg & git commit -m \tn % Row Count 26 (+ 1) % Row 25 \SetRowColor{white} gco & git checkout \tn % Row Count 27 (+ 1) % Row 26 \SetRowColor{LightBackground} gcount & git shortlog -sn \tn % Row Count 28 (+ 1) % Row 27 \SetRowColor{white} gcp & git cherry-pick \tn % Row Count 29 (+ 1) % Row 28 \SetRowColor{LightBackground} gcpa & git cherry-pick -{}-abort \tn % Row Count 30 (+ 1) \end{tabularx} \par\addvspace{1.3em} \vfill \columnbreak \begin{tabularx}{8.4cm}{x{1.44 cm} x{6.56 cm} } \SetRowColor{DarkBackground} \mymulticolumn{2}{x{8.4cm}}{\bf\textcolor{white}{Git Daily Commands (copy) (cont)}} \tn % Row 29 \SetRowColor{LightBackground} gcpc & git cherry-pick -{}-continue \tn % Row Count 1 (+ 1) % Row 30 \SetRowColor{white} gcs & git commit -S \tn % Row Count 2 (+ 1) % Row 31 \SetRowColor{LightBackground} gd & git diff \tn % Row Count 3 (+ 1) % Row 32 \SetRowColor{white} gdca & git diff -{}-cached \tn % Row Count 4 (+ 1) % Row 33 \SetRowColor{LightBackground} gdt & git diff-tree -{}-no-commit-id -{}-name-only -r \tn % Row Count 6 (+ 2) % Row 34 \SetRowColor{white} gdw & git diff -{}-word-diff \tn % Row Count 7 (+ 1) % Row 35 \SetRowColor{LightBackground} gf & git fetch \tn % Row Count 8 (+ 1) % Row 36 \SetRowColor{white} gfa & git fetch -{}-all -{}-prune \tn % Row Count 9 (+ 1) % Row 37 \SetRowColor{LightBackground} gfo & git fetch origin \tn % Row Count 10 (+ 1) % Row 38 \SetRowColor{white} gg & git gui citool \tn % Row Count 11 (+ 1) % Row 39 \SetRowColor{LightBackground} gl & git pull \tn % Row Count 12 (+ 1) % Row 40 \SetRowColor{white} gm & git merge \tn % Row Count 13 (+ 1) % Row 41 \SetRowColor{LightBackground} gp & git push \tn % Row Count 14 (+ 1) % Row 42 \SetRowColor{white} gr & git remote \tn % Row Count 15 (+ 1) % Row 43 \SetRowColor{LightBackground} grbi & git rebase -i \tn % Row Count 16 (+ 1) % Row 44 \SetRowColor{white} grh & git reset HEAD \tn % Row Count 17 (+ 1) % Row 45 \SetRowColor{LightBackground} grhh & git reset HEAD -{}-hard \tn % Row Count 18 (+ 1) % Row 46 \SetRowColor{white} grset & git remote set-url \tn % Row Count 19 (+ 1) % Row 47 \SetRowColor{LightBackground} gsps & git show -{}-pretty = short -{}-show-signature \tn % Row Count 21 (+ 2) % Row 48 \SetRowColor{white} gss & git status -s \tn % Row Count 22 (+ 1) % Row 49 \SetRowColor{LightBackground} gst & git status \tn % Row Count 23 (+ 1) % Row 50 \SetRowColor{white} gsta & git stash save \tn % Row Count 24 (+ 1) % Row 51 \SetRowColor{LightBackground} gstaa & git stash apply \tn % Row Count 25 (+ 1) % Row 52 \SetRowColor{white} gstd & git stash drop \tn % Row Count 26 (+ 1) % Row 53 \SetRowColor{LightBackground} gstl & git stash list \tn % Row Count 27 (+ 1) % Row 54 \SetRowColor{white} gstp & git stash pop \tn % Row Count 28 (+ 1) % Row 55 \SetRowColor{LightBackground} gts & git tag -s \tn % Row Count 29 (+ 1) % Row 56 \SetRowColor{white} gup & git pull -{}-rebase \tn % Row Count 30 (+ 1) \hhline{>{\arrayrulecolor{DarkBackground}}--} \end{tabularx} \par\addvspace{1.3em} % That's all folks \end{multicols*} \end{document}