Skip to content

Commit

Permalink
fix html not showing up
Browse files Browse the repository at this point in the history
  • Loading branch information
aspina7 committed Jan 24, 2025
1 parent 1a0854a commit eb248e2
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions new_pages/collaboration.qmd
Original file line number Diff line number Diff line change
Expand Up @@ -1083,15 +1083,15 @@ how to find it and some bash commands you will need.
Below we present a few common git commands. When you use them, keep in mind
which branch is active (checked-out), as that will change the action!

In the commands below, <name> represents a branch name.
<commit_hash> represents the hash ID of a specific
commit. <num> represents a number. Do not type the
In the commands below, \<name\> represents a branch name.
\<commit_hash\> represents the hash ID of a specific
commit. \<num\> represents a number. Do not type the
\< or \> symbols.

| Git command | Action |
|--------------------------|--------------------------------------------------------------------------|
| `git branch <name>` | Create a new branch with the name <name> |
| `git checkout <name>` | Switch current branch to <name> |
| `git branch <name>` | Create a new branch with the name \<name\> |
| `git checkout <name>` | Switch current branch to \<name\> |
| `git checkout -b <name>` | Shortcut to create new branch *and* switch to it |
| `git status` | See untracked changes |
| `git add <file>` | Stage a file |
Expand All @@ -1100,7 +1100,7 @@ commit. <num> represents a number. Do not type the
| `git pull` | Pull commits from remote repository in current branch |
| `git push` | Push local commits to remote directory |
| `git switch` | An alternative to `git checkout` that is being phased in to Git |
| `git merge <name>` | Merge <name> branch into current branch |
| `git merge <name>` | Merge \<name\> branch into current branch |
| `git rebase <name>` | Append commits from current branch on to <name> branch |


Expand Down

0 comments on commit eb248e2

Please sign in to comment.