René's URL Explorer Experiment


Title: Improve scripts and tool configurations by EliahKagan · Pull Request #1693 · gitpython-developers/GitPython · GitHub

Open Graph Title: Improve scripts and tool configurations by EliahKagan · Pull Request #1693 · gitpython-developers/GitPython

X Title: Improve scripts and tool configurations by EliahKagan · Pull Request #1693 · gitpython-developers/GitPython

Description: Fixes #1690 Fixes #1691 Fixes #1692 This combines the solutions I recommended in those three issues on a single branch. Although I feel this does compose into a coherent whole, with each of those issues' practical ramifications having some tendrils into each other, and opening separate PRs would have resulted in nontrivial merge conflicts... nonetheless this PR is broader than I would usually like. But I have done it this way because it was by working on them together that I was able to get clear on the distinct ideas that I presented as those issues, as well as whether the solutions would work reasonably when all combined. This PR is what remains after pieces that seemed reasonable to sever into their on PRs, such as #1684, have been removed, and excessively enterprising ideas, such as writing a batch-file version of init-tests-after-clone.sh (discussed in #1691) or switching lint.yml to use pre-commit.ci, abandoned or deferred. However, I would be pleased to make further changes as requested. I think the changes here are feasible to review together, but I am willing to rework this into multiple more narrowly scoped PRs if necessary. The problems and their solutions in general are presented in the three linked issues that this would close. (Details are given in commit messages.) Specific considerations that I suspect may be important when reviewing this PR follow. Shell script portability I believe the shell scripts that pertain to building do not need to be any more portable than they are now: they run on bash version 3 or later, which most systems have or can get. I did make modifications to them, some of which were inspired and emboldened by shellcheck, but not for portability to other shells. I take #1661 (comment) (specifically: d18d90a, 1e0b3f9) as an indication of a general preference of echo over printf. The bash shell provides an echo builtin that has good design decisions and, more importantly, behaves the same in bash on any system, because it is a builtin. (I have actually slightly increased the use of echo in bash in this PR.) However, for POSIX shell scripts that assume only what the standard insists on (or that call echo through another command, such as with find -exec or xargs, thereby using an external echo executable), the situation is considerably messier. To write a portable script, I have avoided the use of echo in the init script that, for portability, I have changed from bash to sh. What fallback version-tag fetching looks like Fallback fetching of version tags is the "back-up" strategy that is part of the fix for #1690. It works both locally and on CI. Here's what it looks like on CI (I temporarily deleted all the version tags from my fork and reran the tip of this PR's branch): Ubuntu Cygwin (In case for any reason you want to see the version from an earlier commit and prior to multiple rebases that I had shown before in an earlier draft of this PR description, that's here.) Fallback version-tag fetching would fail on old git At least as currently written, it uses a feature that was introduced in Git 2.6.0. I have posted a review comment on the specific code this affects, with full details. Security implications of where init-tests-after-clone.sh makes master Edit: Based on #1615, I think you might prefer git checkout -B master not be used, for reasons of stability rather than security. Maybe git checkout -B master ea43defd777a9c0751fc44a9c6a622fc2dbd18a0 should even be used, to get the same old commit even in forks that don't have the master branch, and to add the same commits to the top of the reflog history even when __testing_point__ is deleted and the script rerun. Currently, on main, init-tests-after-clone.sh creates or switches to a master branch like this: git checkout master || git checkout -b master One of the changes in this PR is to ensure that master cannot be interpreted as a path--it has to be taken to be a branch, or at least a ref--which is mainly for better output to stderr when the branch doesn't exist, but also to safeguard against rare situations where a file or directory named master exists: git checkout master -- || git checkout -b master However, there is a simpler, more elegant, and more robust way to get a suitable master branch for tests, that I think is more likely to work well most of the time [edit: though the answer to #1615 suggests a reason it might not]: git checkout -B master master is already getting reset back to __testing_point__, so the main disadvantage of -B, that one can lose one's branch if it is not pushed, applies already. I would like to do it that way (and I have a branch for it, ready to go). But it has security implications, specifically for people who review pull requests. As detailed in #1690, wherever master gets checked out, editors and IDEs may be fooled into running unreviewed untrusted code from there. Using the -B way I want to use would be a mitigation for the situation described in #1690 (though that's not the main reason I want to do it). But it would be an exacerbation of it for a reviewer, because it would weaken the already brittle assurance git diff main feature would provide. Consider: main ← evil ← evil ← evil ← feature There, a pull request proposes a useful feature on the feature branch. But the preceding three commits have evil code in them that, if an editor/IDE imports modules to do test discovery (or any other operation the editor reserves for "trusted folders"), will be run. The tip of feature removes the evil code, so git diff main feature does not reveal it. But because master is checked out at the tip of feature even if master already exists in the reviewer's local or remote repository, the script's reflog-building commands reset to each of the evil commits. This may not be a serious problem. When reviewing, one should already not rely merely on git diff main feature, and CI in pull requests is set up to run on the pull-request trigger (which, unlike pull-request-target which is dangerous if not used very carefully, runs with the fork's permissions, not allowing elevation). Furthermore, one may already not have master locally or on a remote, in which case the existing checkout code already creates it at HEAD, so it's not like this is a new situation. Furthermore, it's generally unnecessary to run that script while reviewing, even if one opens up an only partially reviewed PR branch in an editor that may perform unsafe operations based on its contents. Nonetheless, I wanted to bring this up rather than just adding a commit to change it to git checkout -B master. black via pre-commit: I'm not sure what's best. It seems to me that there is actually just one thing that, in hindsight, would have been better to have developed separately. Adding black to pre-commit, and using that on CI, presents choices to be made while reviewing that are practically separate from the other changes. The core issue is that all the other tools run via pre-commit only perform checks, while the way most users of black and pre-commit would expect and prefer they be used together is for pre-commit to actually perform auto-formatting. This is actually no problem on CI; the GitHub Action being used accepts code changes from a hook as a check failure. But there should be a way to just lint locally, that includes checking for black-conforming formatting and that does not change any files. Therefore, I have set up two hooks for black: one that runs by default and formats, and another that does not run by default and that only performs checks. The tox linting environment and lint.yml CI workflow use the check-only hook and skip the formatting one. But there should also be a way to do this locally without building the project and setting up tox environments and without typing in a complex pre-commit command. So I have made make lint do that. This is all documented as part of the readme improvements. It is inelegant, though, because everything else done by makefiles in this project is directly related to building. There are a few options, which I present in descending order of my preference, but they are all things I think are reasonable: Use this, for now. Use this, for now, but add a note in the readme about how make lint may go away. (I think this is not really necessary, because the development instructions are not implied to be stable. But I am not sure.) Change pre-commit to have only the check-only black hook, at least for now, and modify the readme accordingly. Then there is no need for make lint because pre-commit run --all-files just lints, as it did before, but including black. This has the disadvantage that people who like black and pre-commit probably prefer that they facilitate auto-formatting, but it is otherwise elegant. I suspect you might prefer this approach, therefore I have made a commit for it on my sh-nofmt branch, which can be easily fast-forward merged into here (or opened as a separate PR if the change is desired after merging this). Remove everything to do with black from .pre-commit-config.yml on this branch, modifying the readme accordingly, and propose it separately. It could be removed by rebasing, or just by adding a commit to remove it. This is more work, but actually a bigger reason this is not my preferred approach is the same reason I had added black to pre-commit in the first place: with everything else being done by pre-commit, and with this project being in black style (aside from this project's very long lines), it is unintuitive and unexpected that it would not, in any form, be usable via pre-commit.

Open Graph Description: Fixes #1690 Fixes #1691 Fixes #1692 This combines the solutions I recommended in those three issues on a single branch. Although I feel this does compose into a coherent whole, with each of those i...

X Description: Fixes #1690 Fixes #1691 Fixes #1692 This combines the solutions I recommended in those three issues on a single branch. Although I feel this does compose into a coherent whole, with each of those i...

Opengraph URL: https://github.com/gitpython-developers/GitPython/pull/1693

X: @github

direct link

Domain: github.com

route-pattern/:user_id/:repository/pull/:id/files(.:format)
route-controllerpull_requests
route-actionfiles
fetch-noncev2:d93c8550-1c63-fd5d-f376-b89f92e673c7
current-catalog-service-hashae870bc5e265a340912cde392f23dad3671a0a881730ffdadd82f2f57d81641b
request-idCF88:253CE6:18E16EC:22CAAAB:6968B086
html-safe-nonce8b7596dff079f7c2a5d6e30ece78207c9bf6113e0a7a30622007fbba88b630f8
visitor-payloadeyJyZWZlcnJlciI6IiIsInJlcXVlc3RfaWQiOiJDRjg4OjI1M0NFNjoxOEUxNkVDOjIyQ0FBQUI6Njk2OEIwODYiLCJ2aXNpdG9yX2lkIjoiMzI5OTM1MjM3MTk5MTcyMDA3MCIsInJlZ2lvbl9lZGdlIjoiaWFkIiwicmVnaW9uX3JlbmRlciI6ImlhZCJ9
visitor-hmacf43f6be207c13a7e9f2167258becc06546a035a7bb91182d4225218a8e1e9eac
hovercard-subject-tagpull_request:1540997533
github-keyboard-shortcutsrepository,pull-request-list,pull-request-conversation,pull-request-files-changed,copilot
google-site-verificationApib7-x98H0j5cPqHWwSMm6dNU4GmODRoqxLiDzdx9I
octolytics-urlhttps://collector.github.com/github/collect
analytics-location///pull_requests/show/files
fb:app_id1401488693436528
apple-itunes-appapp-id=1477376905, app-argument=https://github.com/gitpython-developers/GitPython/pull/1693/files
twitter:imagehttps://avatars.githubusercontent.com/u/1771172?s=400&v=4
twitter:cardsummary_large_image
og:imagehttps://avatars.githubusercontent.com/u/1771172?s=400&v=4
og:image:altFixes #1690 Fixes #1691 Fixes #1692 This combines the solutions I recommended in those three issues on a single branch. Although I feel this does compose into a coherent whole, with each of those i...
og:site_nameGitHub
og:typeobject
hostnamegithub.com
expected-hostnamegithub.com
Nonefdc7c66bd36a6c12eb8e771e806db863266e573fc299e77f27505a768d4f8a98
turbo-cache-controlno-preview
diff-viewunified
go-importgithub.com/gitpython-developers/GitPython git https://github.com/gitpython-developers/GitPython.git
octolytics-dimension-user_id503709
octolytics-dimension-user_logingitpython-developers
octolytics-dimension-repository_id1126087
octolytics-dimension-repository_nwogitpython-developers/GitPython
octolytics-dimension-repository_publictrue
octolytics-dimension-repository_is_forkfalse
octolytics-dimension-repository_network_root_id1126087
octolytics-dimension-repository_network_root_nwogitpython-developers/GitPython
turbo-body-classeslogged-out env-production page-responsive full-width
disable-turbotrue
browser-stats-urlhttps://api.github.com/_private/browser/stats
browser-errors-urlhttps://api.github.com/_private/browser/errors
release3223a6503d318917691422cdadfbe16cd8fb21e5
ui-targetfull
theme-color#1e2327
color-schemelight dark

Links:

Skip to contenthttps://github.com/gitpython-developers/GitPython/pull/1693/files#start-of-content
https://github.com/
Sign in https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fgitpython-developers%2FGitPython%2Fpull%2F1693%2Ffiles
GitHub CopilotWrite better code with AIhttps://github.com/features/copilot
GitHub SparkBuild and deploy intelligent appshttps://github.com/features/spark
GitHub ModelsManage and compare promptshttps://github.com/features/models
MCP RegistryNewIntegrate external toolshttps://github.com/mcp
ActionsAutomate any workflowhttps://github.com/features/actions
CodespacesInstant dev environmentshttps://github.com/features/codespaces
IssuesPlan and track workhttps://github.com/features/issues
Code ReviewManage code changeshttps://github.com/features/code-review
GitHub Advanced SecurityFind and fix vulnerabilitieshttps://github.com/security/advanced-security
Code securitySecure your code as you buildhttps://github.com/security/advanced-security/code-security
Secret protectionStop leaks before they starthttps://github.com/security/advanced-security/secret-protection
Why GitHubhttps://github.com/why-github
Documentationhttps://docs.github.com
Bloghttps://github.blog
Changeloghttps://github.blog/changelog
Marketplacehttps://github.com/marketplace
View all featureshttps://github.com/features
Enterpriseshttps://github.com/enterprise
Small and medium teamshttps://github.com/team
Startupshttps://github.com/enterprise/startups
Nonprofitshttps://github.com/solutions/industry/nonprofits
App Modernizationhttps://github.com/solutions/use-case/app-modernization
DevSecOpshttps://github.com/solutions/use-case/devsecops
DevOpshttps://github.com/solutions/use-case/devops
CI/CDhttps://github.com/solutions/use-case/ci-cd
View all use caseshttps://github.com/solutions/use-case
Healthcarehttps://github.com/solutions/industry/healthcare
Financial serviceshttps://github.com/solutions/industry/financial-services
Manufacturinghttps://github.com/solutions/industry/manufacturing
Governmenthttps://github.com/solutions/industry/government
View all industrieshttps://github.com/solutions/industry
View all solutionshttps://github.com/solutions
AIhttps://github.com/resources/articles?topic=ai
Software Developmenthttps://github.com/resources/articles?topic=software-development
DevOpshttps://github.com/resources/articles?topic=devops
Securityhttps://github.com/resources/articles?topic=security
View all topicshttps://github.com/resources/articles
Customer storieshttps://github.com/customer-stories
Events & webinarshttps://github.com/resources/events
Ebooks & reportshttps://github.com/resources/whitepapers
Business insightshttps://github.com/solutions/executive-insights
GitHub Skillshttps://skills.github.com
Documentationhttps://docs.github.com
Customer supporthttps://support.github.com
Community forumhttps://github.com/orgs/community/discussions
Trust centerhttps://github.com/trust-center
Partnershttps://github.com/partners
GitHub SponsorsFund open source developershttps://github.com/sponsors
Security Labhttps://securitylab.github.com
Maintainer Communityhttps://maintainers.github.com
Acceleratorhttps://github.com/accelerator
Archive Programhttps://archiveprogram.github.com
Topicshttps://github.com/topics
Trendinghttps://github.com/trending
Collectionshttps://github.com/collections
Enterprise platformAI-powered developer platformhttps://github.com/enterprise
GitHub Advanced SecurityEnterprise-grade security featureshttps://github.com/security/advanced-security
Copilot for BusinessEnterprise-grade AI featureshttps://github.com/features/copilot/copilot-business
Premium SupportEnterprise-grade 24/7 supporthttps://github.com/premium-support
Pricinghttps://github.com/pricing
Search syntax tipshttps://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax
documentationhttps://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax
Sign in https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fgitpython-developers%2FGitPython%2Fpull%2F1693%2Ffiles
Sign up https://github.com/signup?ref_cta=Sign+up&ref_loc=header+logged+out&ref_page=%2F%3Cuser-name%3E%2F%3Crepo-name%3E%2Fpull_requests%2Fshow%2Ffiles&source=header-repo&source_repo=gitpython-developers%2FGitPython
Reloadhttps://github.com/gitpython-developers/GitPython/pull/1693/files
Reloadhttps://github.com/gitpython-developers/GitPython/pull/1693/files
Reloadhttps://github.com/gitpython-developers/GitPython/pull/1693/files
gitpython-developers https://github.com/gitpython-developers
GitPythonhttps://github.com/gitpython-developers/GitPython
Please reload this pagehttps://github.com/gitpython-developers/GitPython/pull/1693/files
Notifications https://github.com/login?return_to=%2Fgitpython-developers%2FGitPython
Fork 964 https://github.com/login?return_to=%2Fgitpython-developers%2FGitPython
Star 5k https://github.com/login?return_to=%2Fgitpython-developers%2FGitPython
Code https://github.com/gitpython-developers/GitPython
Issues 169 https://github.com/gitpython-developers/GitPython/issues
Pull requests 8 https://github.com/gitpython-developers/GitPython/pulls
Discussions https://github.com/gitpython-developers/GitPython/discussions
Actions https://github.com/gitpython-developers/GitPython/actions
Security Uh oh! There was an error while loading. Please reload this page. https://github.com/gitpython-developers/GitPython/security
Please reload this pagehttps://github.com/gitpython-developers/GitPython/pull/1693/files
Insights https://github.com/gitpython-developers/GitPython/pulse
Code https://github.com/gitpython-developers/GitPython
Issues https://github.com/gitpython-developers/GitPython/issues
Pull requests https://github.com/gitpython-developers/GitPython/pulls
Discussions https://github.com/gitpython-developers/GitPython/discussions
Actions https://github.com/gitpython-developers/GitPython/actions
Security https://github.com/gitpython-developers/GitPython/security
Insights https://github.com/gitpython-developers/GitPython/pulse
Sign up for GitHub https://github.com/signup?return_to=%2Fgitpython-developers%2FGitPython%2Fissues%2Fnew%2Fchoose
terms of servicehttps://docs.github.com/terms
privacy statementhttps://docs.github.com/privacy
Sign inhttps://github.com/login?return_to=%2Fgitpython-developers%2FGitPython%2Fissues%2Fnew%2Fchoose
Byronhttps://github.com/Byron
gitpython-developers:mainhttps://github.com/gitpython-developers/GitPython/tree/main
EliahKagan:shhttps://github.com/EliahKagan/GitPython/tree/sh
Conversation 16 https://github.com/gitpython-developers/GitPython/pull/1693
Commits 32 https://github.com/gitpython-developers/GitPython/pull/1693/commits
Checks 0 https://github.com/gitpython-developers/GitPython/pull/1693/checks
Files changed 13 https://github.com/gitpython-developers/GitPython/pull/1693/files
Improve scripts and tool configurations https://github.com/gitpython-developers/GitPython/pull/1693/files#top
Show all changes 32 commits https://github.com/gitpython-developers/GitPython/pull/1693/files
8c4df3c Add pre-commit hook to run shellcheck EliahKagan Sep 27, 2023 https://github.com/gitpython-developers/GitPython/pull/1693/commits/8c4df3cfdca1eebd2f07c7be24ab5e2805ec2708
f3be76f Force color when running shellcheck in pre-commit EliahKagan Sep 27, 2023 https://github.com/gitpython-developers/GitPython/pull/1693/commits/f3be76f474636f9805756bc9f05b22fb4aa8809d
7dd8add Suppress SC2086 where word splitting is intended EliahKagan Sep 27, 2023 https://github.com/gitpython-developers/GitPython/pull/1693/commits/7dd8added2b1695b1740f0d1d7d7b2858a49a88c
21875b5 Don't split and glob the interpreter name EliahKagan Sep 27, 2023 https://github.com/gitpython-developers/GitPython/pull/1693/commits/21875b5a84c899a5b38c627e895a1bb58344b2a1
0920371 Extract suggest_venv out of the else block EliahKagan Sep 27, 2023 https://github.com/gitpython-developers/GitPython/pull/1693/commits/0920371905561d7a242a8be158b79d1a8408a7c4
e973f52 Use some handy bash-isms in version check script EliahKagan Sep 27, 2023 https://github.com/gitpython-developers/GitPython/pull/1693/commits/e973f527f92a932e833167c57cb4d4eeb3103429
be53823 Have init script treat master unambiguously as a branch EliahKagan Sep 27, 2023 https://github.com/gitpython-developers/GitPython/pull/1693/commits/be5382365b2e5fda1344fb1d606e8f7036fb53e2
e604b46 Use 4-space indentation in all shell scripts EliahKagan Sep 27, 2023 https://github.com/gitpython-developers/GitPython/pull/1693/commits/e604b469a1bdfb83f03d4c2ef1f79b45b8a5c3fa
19dfbd8 Make the init script a portable POSIX shell script EliahKagan Sep 27, 2023 https://github.com/gitpython-developers/GitPython/pull/1693/commits/19dfbd8ce4df9bde9b36eda12304ec4db71b084a
7110bf8 Move extra tag-fetching step into init script EliahKagan Sep 27, 2023 https://github.com/gitpython-developers/GitPython/pull/1693/commits/7110bf8e04f96ffb20518ebf48803a50d1e3bf22
c7cdaf4 Reduce code duplication in version check script EliahKagan Sep 27, 2023 https://github.com/gitpython-developers/GitPython/pull/1693/commits/c7cdaf48865f4483bfd34e1f7527ab3e1d205dad
f6dbba2 A couple more script tweaks for clarity EliahKagan Sep 27, 2023 https://github.com/gitpython-developers/GitPython/pull/1693/commits/f6dbba2ae4ad9eb3c470b30acce280a4fb6d0445
5060c9d Explain what each step in the init script achieves EliahKagan Sep 27, 2023 https://github.com/gitpython-developers/GitPython/pull/1693/commits/5060c9dc42677c04af1b696e77228d17dac645a4
d5479b2 Use set -u in init script EliahKagan Sep 28, 2023 https://github.com/gitpython-developers/GitPython/pull/1693/commits/d5479b206fd3a5815bad618d269ecb5e1577feb8
52f9a68 Make the "all" Makefile target more robust EliahKagan Sep 28, 2023 https://github.com/gitpython-developers/GitPython/pull/1693/commits/52f9a68d04233c3be9653a4a8b56a58afb9d7093
b88d07e Use a single awk instead of two greps and a cut EliahKagan Sep 28, 2023 https://github.com/gitpython-developers/GitPython/pull/1693/commits/b88d07e47667194e0668431e2a871926eb54d948
d36818c Add a black check to pre-commit EliahKagan Sep 28, 2023 https://github.com/gitpython-developers/GitPython/pull/1693/commits/d36818cf59d398e50cc6568f2239d69cd904883d
4ba5ad1 Fix typo in comment EliahKagan Sep 28, 2023 https://github.com/gitpython-developers/GitPython/pull/1693/commits/4ba5ad107c4e91f62dacee9bfef277f2674fd90f
5d8ddd9 Use two hooks for black: to check, and format EliahKagan Sep 28, 2023 https://github.com/gitpython-developers/GitPython/pull/1693/commits/5d8ddd9009ec38ecafddb55acfe7ad9919b1bb0d
a872d9c Pass --all-files explicitly so it is retained EliahKagan Oct 3, 2023 https://github.com/gitpython-developers/GitPython/pull/1693/commits/a872d9c9c90b2a99c0b1a29e10aaecbe2fa387ed
9b9de11 Fix the formatting EliahKagan Oct 3, 2023 https://github.com/gitpython-developers/GitPython/pull/1693/commits/9b9de1133b85fd308c8795a4f312d3cfbf40b75f
5d15063 Add "make lint" to lint without auto-formatting EliahKagan Sep 28, 2023 https://github.com/gitpython-developers/GitPython/pull/1693/commits/5d1506352cdff5f3207c5942d82cdc628cb03f3c
6de86a8 Update readme about most of the test/lint tools EliahKagan Sep 28, 2023 https://github.com/gitpython-developers/GitPython/pull/1693/commits/6de86a85e1d17e32cab8996aa66f10783e6beced
f094909 Add BUILDDIR var to doc/Makefile; have tox use it EliahKagan Sep 28, 2023 https://github.com/gitpython-developers/GitPython/pull/1693/commits/f0949096f4a2dec466bce48d46a4bf2dd598d36f
fc96980 Have init script check for GitHub Actions EliahKagan Sep 28, 2023 https://github.com/gitpython-developers/GitPython/pull/1693/commits/fc969807086d4483c4c32b80d2c2b67a6c6813e7
b98f15e Get tags for tests from original repo as fallback EliahKagan Sep 29, 2023 https://github.com/gitpython-developers/GitPython/pull/1693/commits/b98f15e46a7d5f343b1303b55bc4dae2d18bd621
7cca7d2 Don't print the exact same warning twice EliahKagan Sep 29, 2023 https://github.com/gitpython-developers/GitPython/pull/1693/commits/7cca7d2245a504047188943623cc58c4c2e0c35f
e4e009d Reword comment to fix ambiguity EliahKagan Sep 29, 2023 https://github.com/gitpython-developers/GitPython/pull/1693/commits/e4e009d03b890d456b4c1ff2411591d3a50dcdd0
e16e4c0 Format all YAML files in the same style EliahKagan Sep 29, 2023 https://github.com/gitpython-developers/GitPython/pull/1693/commits/e16e4c0099cd0197b5c80ce6ec9a6b4bca41845e
62c024e Let tox run lint, mypy, and html envs without 3.9 EliahKagan Sep 29, 2023 https://github.com/gitpython-developers/GitPython/pull/1693/commits/62c024e277820b2fd3764a0499a71f03d4aa432d
9e245d0 Update readme: CI jobs not just for "main" branch EliahKagan Oct 1, 2023 https://github.com/gitpython-developers/GitPython/pull/1693/commits/9e245d0561ca2f6249e9435a04761da2c64977f1
c2472e9 Note that the init script can be run from Git Bash EliahKagan Oct 1, 2023 https://github.com/gitpython-developers/GitPython/pull/1693/commits/c2472e9b57afde98bb18ada55ae978721a27713d
Clear filters https://github.com/gitpython-developers/GitPython/pull/1693/files
Please reload this pagehttps://github.com/gitpython-developers/GitPython/pull/1693/files
Please reload this pagehttps://github.com/gitpython-developers/GitPython/pull/1693/files
dependabot.yml https://github.com/gitpython-developers/GitPython/pull/1693/files#diff-dd4fbda47e51f1e35defb9275a9cd9c212ecde0b870cba89ddaaae65c5f3cd28
cygwin-test.yml https://github.com/gitpython-developers/GitPython/pull/1693/files#diff-cf2326c301e0abbc3891bf5c0f476cf05faa2c2ddf165185fe6bffb10bd5aea5
lint.yml https://github.com/gitpython-developers/GitPython/pull/1693/files#diff-107e910e9f2ebfb9a741fa10b2aa7100cc1fc4f5f3aca2dfe78b905cbd73c0d2
pythonpackage.yml https://github.com/gitpython-developers/GitPython/pull/1693/files#diff-ee68bef8369ed7bc5460a288e72d62152784762ef66851e07bf134c4075a08f0
.pre-commit-config.yaml https://github.com/gitpython-developers/GitPython/pull/1693/files#diff-63a9c44a44acf85fea213a857769990937107cf072831e1a26808cfde9d096b9
Makefile https://github.com/gitpython-developers/GitPython/pull/1693/files#diff-76ed074a9305c04054cdebb9e9aad2d818052b07091de1f20cad0bbac34ffb52
README.md https://github.com/gitpython-developers/GitPython/pull/1693/files#diff-b335630551682c19a781afebcf4d07bf978fb1f8ac04c6bf87428ed5106870f5
build-release.sh https://github.com/gitpython-developers/GitPython/pull/1693/files#diff-56d440968971bab627980eb075620a7939bc1d91395d9f6c5d4814277dd3ff47
check-version.sh https://github.com/gitpython-developers/GitPython/pull/1693/files#diff-1d636aeb91861725876870b28214bb3c0100b2c87206b5ba121cb343065f778d
Makefile https://github.com/gitpython-developers/GitPython/pull/1693/files#diff-f48ddfd1eec38c4d39f84e195259371f8397cd30146f46b113bdcb4590ed262c
init-tests-after-clone.sh https://github.com/gitpython-developers/GitPython/pull/1693/files#diff-265909da66dc3b4d0723fb67a3c730bd072f6a680c014fdcc99813c62be3ab1f
test_git.py https://github.com/gitpython-developers/GitPython/pull/1693/files#diff-84c4b72d5c62026240fad69041a453efc37f7336a89035b69672cce0e8beaca1
tox.ini https://github.com/gitpython-developers/GitPython/pull/1693/files#diff-ef2cef9f88b4fe09ca3082140e67f5ad34fb65fb6e228f119d3812261ae51449
.github/dependabot.ymlhttps://github.com/gitpython-developers/GitPython/pull/1693/files#diff-dd4fbda47e51f1e35defb9275a9cd9c212ecde0b870cba89ddaaae65c5f3cd28
View file https://github.com/EliahKagan/GitPython/blob/c2472e9b57afde98bb18ada55ae978721a27713d/.github/dependabot.yml
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://github.com/gitpython-developers/GitPython/pull/1693/{{ revealButtonHref }}
https://github.com/gitpython-developers/GitPython/pull/1693/files#diff-dd4fbda47e51f1e35defb9275a9cd9c212ecde0b870cba89ddaaae65c5f3cd28
.github/workflows/cygwin-test.ymlhttps://github.com/gitpython-developers/GitPython/pull/1693/files#diff-cf2326c301e0abbc3891bf5c0f476cf05faa2c2ddf165185fe6bffb10bd5aea5
View file https://github.com/EliahKagan/GitPython/blob/c2472e9b57afde98bb18ada55ae978721a27713d/.github/workflows/cygwin-test.yml
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://github.com/gitpython-developers/GitPython/pull/1693/{{ revealButtonHref }}
https://github.com/gitpython-developers/GitPython/pull/1693/files#diff-cf2326c301e0abbc3891bf5c0f476cf05faa2c2ddf165185fe6bffb10bd5aea5
https://github.com/gitpython-developers/GitPython/pull/1693/files#diff-cf2326c301e0abbc3891bf5c0f476cf05faa2c2ddf165185fe6bffb10bd5aea5
.github/workflows/lint.ymlhttps://github.com/gitpython-developers/GitPython/pull/1693/files#diff-107e910e9f2ebfb9a741fa10b2aa7100cc1fc4f5f3aca2dfe78b905cbd73c0d2
View file https://github.com/EliahKagan/GitPython/blob/c2472e9b57afde98bb18ada55ae978721a27713d/.github/workflows/lint.yml
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://github.com/gitpython-developers/GitPython/pull/1693/{{ revealButtonHref }}
https://github.com/gitpython-developers/GitPython/pull/1693/files#diff-107e910e9f2ebfb9a741fa10b2aa7100cc1fc4f5f3aca2dfe78b905cbd73c0d2
.github/workflows/pythonpackage.ymlhttps://github.com/gitpython-developers/GitPython/pull/1693/files#diff-ee68bef8369ed7bc5460a288e72d62152784762ef66851e07bf134c4075a08f0
View file https://github.com/EliahKagan/GitPython/blob/c2472e9b57afde98bb18ada55ae978721a27713d/.github/workflows/pythonpackage.yml
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://github.com/gitpython-developers/GitPython/pull/1693/{{ revealButtonHref }}
https://github.com/gitpython-developers/GitPython/pull/1693/files#diff-ee68bef8369ed7bc5460a288e72d62152784762ef66851e07bf134c4075a08f0
https://github.com/gitpython-developers/GitPython/pull/1693/files#diff-ee68bef8369ed7bc5460a288e72d62152784762ef66851e07bf134c4075a08f0
.pre-commit-config.yamlhttps://github.com/gitpython-developers/GitPython/pull/1693/files#diff-63a9c44a44acf85fea213a857769990937107cf072831e1a26808cfde9d096b9
View file https://github.com/EliahKagan/GitPython/blob/c2472e9b57afde98bb18ada55ae978721a27713d/.pre-commit-config.yaml
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://github.com/gitpython-developers/GitPython/pull/1693/{{ revealButtonHref }}
Makefilehttps://github.com/gitpython-developers/GitPython/pull/1693/files#diff-76ed074a9305c04054cdebb9e9aad2d818052b07091de1f20cad0bbac34ffb52
View file https://github.com/EliahKagan/GitPython/blob/c2472e9b57afde98bb18ada55ae978721a27713d/Makefile
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://github.com/gitpython-developers/GitPython/pull/1693/{{ revealButtonHref }}
https://github.com/gitpython-developers/GitPython/pull/1693/files#diff-76ed074a9305c04054cdebb9e9aad2d818052b07091de1f20cad0bbac34ffb52
README.mdhttps://github.com/gitpython-developers/GitPython/pull/1693/files#diff-b335630551682c19a781afebcf4d07bf978fb1f8ac04c6bf87428ed5106870f5
View file https://github.com/EliahKagan/GitPython/blob/c2472e9b57afde98bb18ada55ae978721a27713d/README.md
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://github.com/gitpython-developers/GitPython/pull/1693/{{ revealButtonHref }}
https://github.com/gitpython-developers/GitPython/pull/1693/files#diff-b335630551682c19a781afebcf4d07bf978fb1f8ac04c6bf87428ed5106870f5
https://github.com/gitpython-developers/GitPython/pull/1693/files#diff-b335630551682c19a781afebcf4d07bf978fb1f8ac04c6bf87428ed5106870f5
https://github.com/gitpython-developers/GitPython/pull/1693/files#diff-b335630551682c19a781afebcf4d07bf978fb1f8ac04c6bf87428ed5106870f5
https://github.com/gitpython-developers/GitPython/pull/1693/files#diff-b335630551682c19a781afebcf4d07bf978fb1f8ac04c6bf87428ed5106870f5
https://github.com/gitpython-developers/GitPython/pull/1693/files#diff-b335630551682c19a781afebcf4d07bf978fb1f8ac04c6bf87428ed5106870f5
build-release.shhttps://github.com/gitpython-developers/GitPython/pull/1693/files#diff-56d440968971bab627980eb075620a7939bc1d91395d9f6c5d4814277dd3ff47
View file https://github.com/EliahKagan/GitPython/blob/c2472e9b57afde98bb18ada55ae978721a27713d/build-release.sh
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://github.com/gitpython-developers/GitPython/pull/1693/{{ revealButtonHref }}
https://github.com/gitpython-developers/GitPython/pull/1693/files#diff-56d440968971bab627980eb075620a7939bc1d91395d9f6c5d4814277dd3ff47
check-version.shhttps://github.com/gitpython-developers/GitPython/pull/1693/files#diff-1d636aeb91861725876870b28214bb3c0100b2c87206b5ba121cb343065f778d
View file https://github.com/EliahKagan/GitPython/blob/c2472e9b57afde98bb18ada55ae978721a27713d/check-version.sh
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://github.com/gitpython-developers/GitPython/pull/1693/{{ revealButtonHref }}
https://github.com/gitpython-developers/GitPython/pull/1693/files#diff-1d636aeb91861725876870b28214bb3c0100b2c87206b5ba121cb343065f778d
Please reload this pagehttps://github.com/gitpython-developers/GitPython/pull/1693/files
Please reload this pagehttps://github.com/gitpython-developers/GitPython/pull/1693/files
Byronhttps://github.com/Byron
Oct 4, 2023https://github.com/gitpython-developers/GitPython/pull/1693/files#r1346190642
Learn morehttps://docs.github.com/articles/managing-disruptive-comments/#hiding-a-comment
Please reload this pagehttps://github.com/gitpython-developers/GitPython/pull/1693/files
EliahKaganhttps://github.com/EliahKagan
Oct 4, 2023https://github.com/gitpython-developers/GitPython/pull/1693/files#r1346540954
Please reload this pagehttps://github.com/gitpython-developers/GitPython/pull/1693/files
Learn morehttps://docs.github.com/articles/managing-disruptive-comments/#hiding-a-comment
fuller advantage of echo to have fewer \n sequenceshttps://github.com/gitpython-developers/GitPython/pull/1661#issuecomment-1747179585
doing this inline in Makefilehttps://github.com/gitpython-developers/GitPython/commit/6495d84142b60ba81a5b4268a0dfc0785c22d60a#diff-76ed074a9305c04054cdebb9e9aad2d818052b07091de1f20cad0bbac34ffb52
at least when displaying data read from fileshttps://unix.stackexchange.com/a/65819/11938
Please reload this pagehttps://github.com/gitpython-developers/GitPython/pull/1693/files
Byronhttps://github.com/Byron
Oct 5, 2023https://github.com/gitpython-developers/GitPython/pull/1693/files#r1346833158
Learn morehttps://docs.github.com/articles/managing-disruptive-comments/#hiding-a-comment
Please reload this pagehttps://github.com/gitpython-developers/GitPython/pull/1693/files
EliahKaganhttps://github.com/EliahKagan
Oct 9, 2023https://github.com/gitpython-developers/GitPython/pull/1693/files#r1350796661
Please reload this pagehttps://github.com/gitpython-developers/GitPython/pull/1693/files
Learn morehttps://docs.github.com/articles/managing-disruptive-comments/#hiding-a-comment
an argument to be madehttps://mywiki.wooledge.org/BashFAQ/105
729372fhttps://github.com/gitpython-developers/GitPython/commit/729372f6f87639f0c4d8211ee7d173100117a257
Please reload this pagehttps://github.com/gitpython-developers/GitPython/pull/1693/files
https://github.com/gitpython-developers/GitPython/pull/1693/files#diff-1d636aeb91861725876870b28214bb3c0100b2c87206b5ba121cb343065f778d
doc/Makefilehttps://github.com/gitpython-developers/GitPython/pull/1693/files#diff-f48ddfd1eec38c4d39f84e195259371f8397cd30146f46b113bdcb4590ed262c
View file https://github.com/EliahKagan/GitPython/blob/c2472e9b57afde98bb18ada55ae978721a27713d/doc/Makefile
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://github.com/gitpython-developers/GitPython/pull/1693/{{ revealButtonHref }}
https://github.com/gitpython-developers/GitPython/pull/1693/files#diff-f48ddfd1eec38c4d39f84e195259371f8397cd30146f46b113bdcb4590ed262c
https://github.com/gitpython-developers/GitPython/pull/1693/files#diff-f48ddfd1eec38c4d39f84e195259371f8397cd30146f46b113bdcb4590ed262c
Please reload this pagehttps://github.com/gitpython-developers/GitPython/pull/1693/files
https://github.com
Termshttps://docs.github.com/site-policy/github-terms/github-terms-of-service
Privacyhttps://docs.github.com/site-policy/privacy-policies/github-privacy-statement
Securityhttps://github.com/security
Statushttps://www.githubstatus.com/
Communityhttps://github.community/
Docshttps://docs.github.com/
Contacthttps://support.github.com?tags=dotcom-footer

Viewport: width=device-width


URLs of crawlers that visited me.