diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 000000000..b242572ef --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,5 @@ +{ + "githubPullRequests.ignoredPullRequestBranches": [ + "main" + ] +} \ No newline at end of file diff --git a/git-crash-course/Readme.md b/git-crash-course/Readme.md index f96b960d6..0a1580db5 100644 --- a/git-crash-course/Readme.md +++ b/git-crash-course/Readme.md @@ -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 @@ -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 @@ -209,4 +209,4 @@ When we want to push a repo to our remote origin ``` git push -``` \ No newline at end of file +```