Comment
When setting the default hashing algorithm to sha256 on a new Repository, the instructions currently say:
touch README.md
git init
git add README.md
git commit -m "first commit"
git remote add origin https://codeberg.org/WingsLikeEagles/terragrunt-container.git
git push -u origin master
This fails with the following error:
fatal: the receiving end does not support this repository's hash algorithm
fatal: the remote end hung up unexpectedly
error: failed to push some refs to 'https://codeberg.org/WingsLikeEagles/terragrunt-container.git'
When sha256 is selected as the Default hashing algorithm, the instruction should be updated as follows:
touch README.md
git init --object-format=sha256
git add README.md
git commit -m "first commit"
git remote add origin https://codeberg.org/WingsLikeEagles/terragrunt-container.git
git push -u origin master
Essentially just changing the git init to git init --object-format=sha256
Thank you,
WingsLikeEagles
### Comment
When setting the default hashing algorithm to sha256 on a new Repository, the instructions currently say:
```
touch README.md
git init
git add README.md
git commit -m "first commit"
git remote add origin https://codeberg.org/WingsLikeEagles/terragrunt-container.git
git push -u origin master
```
This fails with the following error:
```
fatal: the receiving end does not support this repository's hash algorithm
fatal: the remote end hung up unexpectedly
error: failed to push some refs to 'https://codeberg.org/WingsLikeEagles/terragrunt-container.git'
```
When sha256 is selected as the Default hashing algorithm, the instruction should be updated as follows:
```
touch README.md
git init --object-format=sha256
git add README.md
git commit -m "first commit"
git remote add origin https://codeberg.org/WingsLikeEagles/terragrunt-container.git
git push -u origin master
```
Essentially just changing the `git init` to `git init --object-format=sha256`
Thank you,
WingsLikeEagles