|
You are here |
ljvmiranda921.github.io | ||
| | | | |
xnacly.me
|
|
| | | | | Small but sufficient guide for github and git beginners | |
| | | | |
adventures.michaelfbryan.com
|
|
| | | | | When developing locally, you can add a private GitHub repository to your Rust crate as a git dependency and cargo should be able to retrieve it just fine. However, when you push your changes to GitHub and run CI, GitHub Actions can run into authentication issues when trying to build your crate. This is the error message I was fighting for a good part of today: $ cargo check --workspace --verbose --locked Updating git repository `https://github. | |
| | | | |
utf9k.net
|
|
| | | | | Why setting for one gitconfig when you could have two or more | |
| | | | |
purefun.dev
|
|
| | | If you install a new machine and forget to set your email and commiter name, then your Git history will be a tad ugly, with your machine name involved instead of a real email. So how do you set the default? Like this: git config --global user.name "Alice E" git config --global user.email "alice@example.org" Override per repo Ideally, do it before you start committing things. But what if you want different committer names and emails depending on the context? | ||