-
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.
Merge pull request #26 from windpioneers/python-3-12
Python 3.12
- Loading branch information
Showing
4 changed files
with
48 additions
and
59 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
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 |
---|---|---|
@@ -0,0 +1,27 @@ | ||
#!/bin/zsh | ||
|
||
# ..Install dependencies here if required... | ||
|
||
# Auto set up remote when pushing new branches | ||
git config --global --add push.autoSetupRemote 1 | ||
|
||
# Allow precommit to install properly | ||
git config --global --add safe.directory /workspace | ||
|
||
# Install precommit hooks | ||
pre-commit install && pre-commit install -t commit-msg | ||
pre-commit install-hooks | ||
|
||
# Set zsh history location | ||
# This is done in postAttach so it's not overridden by the oh-my-zsh devcontainer feature | ||
# | ||
# We leave you to decide, but if you put this into a folder that's been mapped | ||
# into the container, then history will persist over container rebuilds :) | ||
# | ||
# !!!IMPORTANT!!! | ||
# Make sure your .zsh_history file is NOT committed into your repository or docker builds, | ||
# as it can contain sensitive information. So in this case, you should add | ||
# .devcontainer/.zsh_history | ||
# to your .gitignore and .dockerignore files. | ||
export HISTFILE="/workspace/.devcontainer/.zsh_history" | ||
|
This file was deleted.
Oops, something went wrong.
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