-
-
Notifications
You must be signed in to change notification settings - Fork 929
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
26 changed files
with
712 additions
and
624 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
0.16.5 | ||
0.16.9 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -27,14 +27,14 @@ of configurations we will set as we get started with Git: | |
|
||
On a command line, Git commands are written as `git verb options`, | ||
where `verb` is what we actually want to do and `options` is additional optional information which may be needed for the `verb`. So here is how | ||
Dracula sets up his new laptop: | ||
Alfredo sets up his new laptop: | ||
|
||
```bash | ||
$ git config --global user.name "Vlad Dracula" | ||
$ git config --global user.email "[email protected]" | ||
$ git config --global user.name "Alfredo Linguini" | ||
$ git config --global user.email "[email protected]" | ||
``` | ||
|
||
Please use your own name and email address instead of Dracula's. This user name and email will be associated with your subsequent Git activity, | ||
Please use your own name and email address instead of Alfredo's. This user name and email will be associated with your subsequent Git activity, | ||
which means that any changes pushed to | ||
[GitHub](https://github.com/), | ||
[BitBucket](https://bitbucket.org/), | ||
|
@@ -57,7 +57,7 @@ If you elect to use a private email address with GitHub, then use GitHub's no-re | |
|
||
## Line Endings | ||
|
||
As with other keys, when you hit <kbd>Enter</kbd> or <kbd>↵</kbd> or on Macs, <kbd>Return</kbd> on your keyboard, | ||
As with other keys, when you press <kbd>Enter</kbd> or <kbd>↵</kbd> or on Macs, <kbd>Return</kbd> on your keyboard, | ||
your computer encodes this input as a character. | ||
Different operating systems use different character(s) to represent the end of a line. | ||
(You may also hear these referred to as newlines or line breaks.) | ||
|
@@ -84,7 +84,7 @@ $ git config --global core.autocrlf true | |
|
||
:::::::::::::::::::::::::::::::::::::::::::::::::: | ||
|
||
Dracula also has to set his favorite text editor, following this table: | ||
Alfredo also has to set his favorite text editor, following this table: | ||
|
||
| Editor | Configuration command | | ||
| :----------- | :------------------------------ | | ||
|
@@ -111,14 +111,14 @@ It is possible to reconfigure the text editor for Git whenever you want to chang | |
## Exiting Vim | ||
|
||
Note that Vim is the default editor for many programs. If you haven't used Vim before and wish to exit a session without saving | ||
your changes, press <kbd>Esc</kbd> then type `:q!` and hit <kbd>Enter</kbd> or <kbd>↵</kbd> or on Macs, <kbd>Return</kbd>. | ||
If you want to save your changes and quit, press <kbd>Esc</kbd> then type `:wq` and hit <kbd>Enter</kbd> or <kbd>↵</kbd> or on Macs, <kbd>Return</kbd>. | ||
your changes, press <kbd>Esc</kbd> then type `:q!` and press <kbd>Enter</kbd> or <kbd>↵</kbd> or on Macs, <kbd>Return</kbd>. | ||
If you want to save your changes and quit, press <kbd>Esc</kbd> then type `:wq` and press <kbd>Enter</kbd> or <kbd>↵</kbd> or on Macs, <kbd>Return</kbd>. | ||
|
||
|
||
:::::::::::::::::::::::::::::::::::::::::::::::::: | ||
|
||
Git (2.28+) allows configuration of the name of the branch created when you | ||
initialize any new repository. Dracula decides to use that feature to set it to `main` so | ||
initialize any new repository. Alfredo decides to use that feature to set it to `main` so | ||
it matches the cloud service he will eventually use. | ||
|
||
```bash | ||
|
Oops, something went wrong.