Merge branch 'main' into main

This commit is contained in:
blinry 2021-03-24 15:56:30 +01:00 committed by GitHub
commit 9560254739
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 11 additions and 7 deletions

View file

@ -37,7 +37,7 @@ You do not have a donut." > you
git add . git add .
git commit -m "You eat the baguette" git commit -m "You eat the baguette"
git checkout -b coffee git checkout -b coffee main
echo "You do not have a baguette. echo "You do not have a baguette.
You have coffee. You have coffee.

View file

@ -4,14 +4,12 @@ cards = checkout commit-auto merge reset-hard
[description] [description]
If you want to keep your changes but they don't belong to the main branch, you can easily If you want to keep your changes but they don't belong to the main branch, you can easily
create a new branch from your stashed shanges. Just use create a new branch from your stashed changes. Just use
git stash branch <branchname> <stash> git stash branch <branchname> <stash>
If you just want to use the latest stash entry, you can leave the <stash> option empty. If you just want to use the latest stash entry, you can leave the <stash> option empty.
Create a new branch from the stashed changes! Create a new branch from the stashed changes!
Clear you stash stack!
--- ---
tipp1 tipp1
--- ---
@ -38,7 +36,7 @@ git checkout main
[win] [win]
# Did you clear your stash stack? # Did you create a new branch from the stashed changes?
test "$(git branch --list| wc -l)" -ge 2 test "$(git branch --list| wc -l)" -ge 2
[actions] [actions]
@ -47,4 +45,4 @@ test "$(git branch --list| wc -l)" -ge 2
[congrats] [congrats]
All clear! :) Stashed changes are in a new branch! :)

View file

@ -35,6 +35,7 @@ git stash push
echo "- Pinch of Salt" >> recipe echo "- Pinch of Salt" >> recipe
git checkout main git checkout main
git add recipe
[win] [win]

View file

@ -96,6 +96,9 @@ func careful_delete(path_inside):
expected_prefix = "/Users/%s/Library/Application Support/Oh My Git/tmp/" % OS.get_environment("USER") expected_prefix = "/Users/%s/Library/Application Support/Oh My Git/tmp/" % OS.get_environment("USER")
elif os == "Windows": elif os == "Windows":
expected_prefix = "C:/Users/%s/AppData/Roaming/Oh My Git/tmp/" % OS.get_environment("USERNAME") expected_prefix = "C:/Users/%s/AppData/Roaming/Oh My Git/tmp/" % OS.get_environment("USERNAME")
# Windows treats paths case-insensitively:
expected_prefix = expected_prefix.to_lower()
path_inside = path_inside.to_lower()
else: else:
helpers.crash("Unsupported OS: %s" % os) helpers.crash("Unsupported OS: %s" % os)

View file

@ -14,3 +14,5 @@
denyCurrentBranch = ignore denyCurrentBranch = ignore
[commit] [commit]
gpgsign = false gpgsign = false
[pull]
rebase = false