Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Made some corrections in the Git-Crash-course directory, Readme.md file. #119

Open
wants to merge 3 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"githubPullRequests.ignoredPullRequestBranches": [
"main"
]
}
8 changes: 4 additions & 4 deletions git-crash-course/Readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

There is a hidden folder called `.git` which tells you that our project is a git repo.

If we wanted to create a git repo in a new project we' create the folder and the initalize that repo using `git init`
If we wanted to create a git repo in a new project we'll create the folder and the initalize that repo using `git init`

```
mkdir /workspaces/tmp/new-project
Expand All @@ -19,9 +19,9 @@ git commit -m "add readme file"

## Cloning

We can clone three ways: HTTPS, SSH, Github CLI
We can clone in three ways: HTTPS, SSH, Github CLI

Since we are using GitHub Codespaecs we'll a create temporary directory in our workspace
Since we are using GitHub Codespaecs we'll create temporary directory in our workspace

```sh
mkdir /workspace/tmp
Expand Down Expand Up @@ -209,4 +209,4 @@ When we want to push a repo to our remote origin

```
git push
```
```