Remove more Epub Junk

James Musselman 2025-03-11 17:48:02 -05:00
parent 4c8b425ea3
commit 794fbb4734
Signed by: Musselman
GPG key ID: 1DAEFF35ECB5D6DB

56
Home.md

@ -148,8 +148,6 @@ commands. To get the most out of this tutorial, it's important to
actually execute the commands you're reading about. So, make sure you're actually execute the commands you're reading about. So, make sure you're
sitting in front of a computer, and let's get to it! sitting in front of a computer, and let's get to it!
[]
# The Basics # The Basics
Now that you have a basic understanding of version control systems in Now that you have a basic understanding of version control systems in
@ -593,10 +591,6 @@ simple versioning tool for your own projects.
`git config --global user.email <email>` `git config --global user.email <email>`
: Define the author email to be used in all repositories. : Define the author email to be used in all repositories.
[]
:
# Undoing Changes # Undoing Changes
In the last module, we learned how to record versions of a project into In the last module, we learned how to record versions of a project into
@ -961,11 +955,6 @@ cover the basic Git branch commands.
`git reset --hard` / `git clean -f` `git reset --hard` / `git clean -f`
: Permanently undo uncommitted changes. : Permanently undo uncommitted changes.
:
[]
:
# Branches, Part I # Branches, Part I
@ -1418,11 +1407,6 @@ branch.
`git rm <file>` `git rm <file>`
: Remove a file from the working directory (if applicable) and stop : Remove a file from the working directory (if applicable) and stop
tracking the file. tracking the file.
:
[]
:
# Branches, Part II # Branches, Part II
@ -1971,11 +1955,6 @@ message.
`git branch -D <branch-name>` `git branch -D <branch-name>`
: Force the removal of an unmerged branch (_be careful_: it will be : Force the removal of an unmerged branch (_be careful_: it will be
lost forever). lost forever).
:
[]
:
# Rebasing # Rebasing
@ -2505,11 +2484,6 @@ its former state.
`git merge --no-ff <branch-name>` `git merge --no-ff <branch-name>`
: Force a merge commit even if Git could do a fast-forward merge. : Force a merge commit even if Git could do a fast-forward merge.
:
[]
:
# Rewriting History # Rewriting History
@ -3052,11 +3026,6 @@ These parameters can be either commit ID's or branch names.
`git log --stat` `git log --stat`
: Include extra information about altered files in the log output. : Include extra information about altered files in the log output.
:
[]
:
# Remotes # Remotes
@ -3520,11 +3489,6 @@ repository.
`git push <remote-name> <tag-name>` `git push <remote-name> <tag-name>`
: Push a tag to another repository. : Push a tag to another repository.
:
[]
:
# Centralized Workflows # Centralized Workflows
@ -3991,11 +3955,6 @@ standard: the integrator workflow.
`git remote rm <remote-name>` `git remote rm <remote-name>`
: Remove the specified remote from your bookmarked connections. : Remove the specified remote from your bookmarked connections.
:
[]
:
# Distributed Workflows # Distributed Workflows
@ -4405,11 +4364,6 @@ to rely upon.
In the next module, we'll take a look at an even more flexible way to In the next module, we'll take a look at an even more flexible way to
share commits. This low-level approach will also give us a better share commits. This low-level approach will also give us a better
understanding of how Git internally manages our content. understanding of how Git internally manages our content.
:
[]
:
# Patch Workflows # Patch Workflows
@ -4760,11 +4714,6 @@ not in `<branch-name>`. You can also specify a commit ID instead of
`git am < <patch-file>` `git am < <patch-file>`
: Apply a patch to the current branch. : Apply a patch to the current branch.
:
[]
:
# Tips & Tricks # Tips & Tricks
@ -5267,11 +5216,6 @@ switching branches.
`git config --global alias.<alias-name> <git-command>` `git config --global alias.<alias-name> <git-command>`
: Create a shortcut for a command and store it in the global : Create a shortcut for a command and store it in the global
configuration file. configuration file.
:
[]
:
# Plumbing # Plumbing