Skip to content

Commit 3b0129a

Browse files
author
jordanmccullough
committed
Add small Liquid, Bootstrap comp. for page-like layout
1 parent 62f090c commit 3b0129a

File tree

1 file changed

+25
-13
lines changed

1 file changed

+25
-13
lines changed

downloads/github-git-cheat-sheet.md

Lines changed: 25 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,7 @@ byline: Git is the open source distributed version control system that facilitat
55
leadingpath: ../
66
---
77

8-
# GitHub Git Cheat Sheet
9-
10-
Git is the open source distributed version control system that facilitates GitHub activities on your laptop or desktop. This cheat sheet summarizes commonly used Git command line instructions for quick reference.
11-
8+
{% capture colOne %}
129
## Install Git
1310
GitHub provides desktop clients that include a graphical user interface for the most common repository actions and an automatically updating command line edition of Git for advanced scenarios.
1411

@@ -26,7 +23,6 @@ http://git-scm.com
2623
## Configure tooling
2724
Configure user information for all local repositories
2825

29-
3026
```$ git config --global user.name "[name]"```
3127

3228
Sets the name you want attached to your commit transactions
@@ -50,6 +46,14 @@ Creates a new local repository with the specified name
5046

5147
Downloads a project and its entire version history
5248

49+
{% endcapture %}
50+
<div class="col-md-6">
51+
{{ colOne | markdownify }}
52+
</div>
53+
54+
55+
{% capture colTwo %}
56+
5357
## Make changes
5458
Review edits and craft a commit transaction
5559

@@ -110,8 +114,15 @@ Combines the specified branch’s history into the current branch
110114
```$ git branch -d [branch-name]```
111115

112116
Deletes the specified branch
117+
{% endcapture %}
118+
<div class="col-md-6">
119+
{{ colTwo | markdownify }}
120+
</div>
121+
<div class="clearfix"></div>
113122

123+
---
114124

125+
{% capture colThree %}
115126
## Refactor file names
116127
Relocate and remove versioned files
117128

@@ -168,7 +179,12 @@ Lists all stashed changesets
168179
```$ git stash drop```
169180

170181
Discards the most recently stashed changeset
182+
{% endcapture %}
183+
<div class="col-md-6">
184+
{{ colThree | markdownify }}
185+
</div>
171186

187+
{% capture colFour %}
172188
## Review history
173189
Browse and inspect the evolution of project files
174190

@@ -227,11 +243,7 @@ Uploads all local branch commits to GitHub
227243
```$ git pull```
228244

229245
Downloads bookmark history and incorporates changes
230-
231-
---
232-
233-
## GitHub Training
234-
Learn more about using GitHub and Git. Email the Training Team or visit our website for learning event schedules and private class availability.
235-
236-
237-
* training.github.com
246+
{% endcapture %}
247+
<div class="col-md-6">
248+
{{ colFour | markdownify }}
249+
</div>

0 commit comments

Comments
 (0)