8000 Made cosmetic changes. · udbmnm/github-cheat-sheet@cb07963 · GitHub
[go: up one dir, main page]

Skip to content

Commit cb07963

Browse files
committed
Made cosmetic changes.
1 parent 612c81a commit cb07963

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -101,31 +101,31 @@ $ git clone https://github.com/tiimgreen/github-cheat-sheet
101101

102102
### Compare all Branches to Another Branch
103103

104-
If you go to (click the branches link next to commits):
104+
If you go to the repo's [Branches](https://github.com/tiimgreen/github-cheat-sheet/branches) page, next to the Commits button:
105105

106106
```
107107
https://github.com/{user}/{repo}/branches
108108
```
109109

110-
You would see a list of all branches which are not merged into the main branch (e.g. `master`).
110+
... you would see a list of all branches which are not merged into the main branch.
111111

112-
You could go to the compare page or delete a branch with a click of a button.
112+
From here you can access the compare page or delete a branch with a click of a button.
113113

114114
![Compare branches not merged into master in jquery/jquery repo - https://github.com/jquery/jquery/branches](http://i.imgur.com/gKWPe8a.png)
115115

116-
However often you need to compare branches to a branch other than `master` (e.g. `development`). Just append the name of the branch to the URL like so:
116+
However, often you need to compare branches to a branch other than `master` (e.g. `development`). To do this, append the URL with the name of the branch like so:
117117

118118
```
119119
https://github.com/{user}/{repo}/branches/{branch}
120120
```
121121

122122
![Compare branches not merged into `1.x-master` in jquery/jquery repo - https://github.com/jquery/jquery/branches/1.x-master](http://i.imgur.com/jpc6Urb.png)
123123

124-
If you want to see the merged branches you need to append `?merged=1` to the URL. There is a link of that on top.
124+
To see the merged branches, append `?merged=1` to the URL.
125125

126126
![Compare branches merged in to `1.x-master` in jquery/jquery repo - https://github.com/jquery/jquery/branches/1.x-master?merged=1](http://i.imgur.com/KmYyCVh.png)
127127

128-
This view is very nice if you want to find out which branches to delete (and delete them right from the page) right on GitHub.com.
128+
This view allows you to delete branches easily from the page, without using the command-line.
129129

130130
### Comparing Branches
131131
To use GitHub to compare branches, change the URL to look like this:

0 commit comments

Comments
 (0)
0