-
Notifications
You must be signed in to change notification settings - Fork 0
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
1 parent
18cd7bc
commit 17867c5
Showing
11 changed files
with
118 additions
and
106 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,7 @@ | ||
--- | ||
title: EFCore Usage Daily Notes | ||
date: 2024-06-06 14:22:52 | ||
updated: 2024-06-06 14:22:52 | ||
tags: EFCore | ||
--- | ||
|
||
|
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,16 +1,17 @@ | ||
--- | ||
title: Git commands cheat sheet | ||
date: 2022-02-27 20:55:55 | ||
updated: 2022-02-27 20:55:55 | ||
tags: Git | ||
--- | ||
|
||
|
||
# Handbook | ||
|
||
```bash | ||
# Initialize a new git repository: | ||
git init | ||
|
||
# Set configuration values for your settings: | ||
# Set configuration values for your settings: | ||
git config --global user.name <your-name> | ||
git config --global user.email <your-email> | ||
git config --global init.defaultBranch main | ||
|
@@ -21,10 +22,10 @@ git clone <repository-url> | |
# Add a file to the staging area: | ||
git add <file> | ||
|
||
# Add all files changes to the staging area: | ||
# Add all files changes to the staging area: | ||
git add | ||
|
||
# Check the unstaged changes: | ||
# Check the unstaged changes: | ||
git diff | ||
|
||
# Commit the staged changes: | ||
|
@@ -34,7 +35,7 @@ git commit --amend --no-edit | |
# Reset staging area to the last commit: | ||
git reset | ||
|
||
# Check the state of the working directory and the staging area: | ||
# Check the state of the working directory and the staging area: | ||
git status | ||
|
||
# Remove a file from the index and working directory: | ||
|
@@ -46,7 +47,7 @@ git log | |
# Show changelog with graph | ||
git log --graph | ||
|
||
# Check the metadata and content changes of the commit: | ||
# Check the metadata and content changes of the commit: | ||
git show <commit-hash> | ||
|
||
# Lists all local and remote branches: | ||
|
@@ -67,19 +68,19 @@ git checkout <branch-name> | |
# Create and switch to a new branch | ||
git checkout -b <branch-name> | ||
|
||
# Merge specified branch into the current branch: | ||
# Merge specified branch into the current branch: | ||
git merge <branch-name> | ||
|
||
# Create a new connection to a remote repository: | ||
# Create a new connection to a remote repository: | ||
git remote add <name> <repository-url> | ||
|
||
# Push the committed changes to a remote repository: | ||
# Push the committed changes to a remote repository: | ||
git push <remote> <branch> | ||
|
||
# Download the content from a remote repository: | ||
git pull <remote> | ||
|
||
# Cleanup unnecessary files and optimize the local repository: | ||
# Cleanup unnecessary files and optimize the local repository: | ||
git gc | ||
|
||
# Temporarily remove uncommitted changes and save them for later use: | ||
|
@@ -104,4 +105,4 @@ Host github.com | |
Port 443 | ||
``` | ||
|
||
Then, run the command `ssh -T [email protected]` to confirm if the issue is fixed. | ||
Then, run the command `ssh -T [email protected]` to confirm if the issue is fixed. |
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
1 change: 1 addition & 0 deletions
1
src/source/_posts/how-to-integrate-opentelemetry-with-quartz-net-in-worker.md
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
1 change: 1 addition & 0 deletions
1
src/source/_posts/how-to-use-multiple-github-accounts-on-mac.md
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
Oops, something went wrong.