File tree Expand file tree Collapse file tree 1 file changed +12
-4
lines changed
Expand file tree Collapse file tree 1 file changed +12
-4
lines changed Original file line number Diff line number Diff line change @@ -13,19 +13,27 @@ curl "https://awscli.amazonaws.com/awscli-exe-linux-x86_64.zip" -o "awscliv2.zip
1313 unzip awscliv2.zip && \
1414 ./aws/install
1515
16- # tidy up
16+ # tidy up aws install
1717rm -rf aws/
1818rm -r awscliv2.zip
1919
2020# minio client for S3 use
2121curl https://dl.min.io/client/mc/release/linux-amd64/mc -o /usr/local/bin/mc && chmod +x /usr/local/bin/mc
2222
2323# optional git config
24- # git config --system pull.rebase false && \
24+ git config --system pull.rebase true && \
2525# git config --system credential.credentialStore cache && \
2626# git config --system credential.cacheOptions "--timeout 30000" && \
27- # echo '"\e[5~": history-search-backward' >> /etc/inputrc && \
28- # echo '"\e[6~": history-search-forward' >> /etc/inputrc
27+
28+ git config --system user.name " Default User"
29+ git config --system user.email
" [email protected] " 30+
31+ # uv install
32+ curl -LsSf https://astral.sh/uv/install.sh | UV_INSTALL_DIR=" /usr/local/bin" sh
33+
34+ # # terminal preferences
35+ echo ' "\e[5~": history-search-backward' >> /etc/inputrc && \
36+ echo ' "\e[6~": history-search-forward' >> /etc/inputrc
2937
3038# Optional credential manager for RStudio/Jupyter users. -- code-server extension provides easier alternative.
3139# wget https://github.com/git-ecosystem/git-credential-manager/releases/download/v2.6.0/gcm-linux_amd64.2.6.0.deb && dpkg -i gcm-*.deb && rm gcm-*.deb
You can’t perform that action at this time.
0 commit comments