-
-
Notifications
You must be signed in to change notification settings - Fork 926
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
change the use of git checkout to git restore #927
change the use of git checkout to git restore #927
Conversation
Thank you!Thank you for your pull request 😃 🤖 This automated message can help you check the rendered files in your submission for clarity. If you have any questions, please feel free to open an issue in {sandpaper}. If you have files that automatically render output (e.g. R Markdown), then you should check for the following:
Rendered Changes🔍 Inspect the changes: https://github.com/swcarpentry/git-novice/compare/md-outputs..md-outputs-PR-927 The following changes were observed in the rendered markdown documents:
What does this mean?If you have source files that require output and figures to be generated (e.g. R Markdown), then it is important to make sure the generated figures and output are reproducible. This output provides a way for you to inspect the output in a diff-friendly manner so that it's easy to see the changes that occur due to new software versions or randomisation. ⏱️ Updated at 2024-07-18 07:32:22 +0000 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for this needed update. You missed some instances of checkout
in this particular episode. Can you update your PR?
Hi, Sorry for the slow reply, I was on a holiday, so it got to the bottom of the pile. I have added a new commit that should change all the remaining instances of checkout to restore. Cheers, |
the PR was missing the last `git restore` needed to put `mars.txt` back in the state at the beginning of the episode (before the ill-considered change)
See #691 |
@kekoziar are you happy with the changes now? I'm happy to resolve the conflict myself, it's minor. |
Requested changes were addressed by contributor
Auto-generated via {sandpaper} Source : b33dbf2 Branch : main Author : Martino Sorbaro <[email protected]> Time : 2024-07-18 07:39:46 +0000 Message : Merge pull request #927 from kleuveld/replace_checkout_with_restore change the use of git checkout to git restore
Auto-generated via {sandpaper} Source : 496d4c4 Branch : md-outputs Author : GitHub Actions <[email protected]> Time : 2024-07-18 07:40:50 +0000 Message : markdown source builds Auto-generated via {sandpaper} Source : b33dbf2 Branch : main Author : Martino Sorbaro <[email protected]> Time : 2024-07-18 07:39:46 +0000 Message : Merge pull request #927 from kleuveld/replace_checkout_with_restore change the use of git checkout to git restore
Auto-generated via {sandpaper} Source : 496d4c4 Branch : md-outputs Author : GitHub Actions <[email protected]> Time : 2024-07-18 07:40:50 +0000 Message : markdown source builds Auto-generated via {sandpaper} Source : b33dbf2 Branch : main Author : Martino Sorbaro <[email protected]> Time : 2024-07-18 07:39:46 +0000 Message : Merge pull request #927 from kleuveld/replace_checkout_with_restore change the use of git checkout to git restore
Auto-generated via {sandpaper} Source : 496d4c4 Branch : md-outputs Author : GitHub Actions <[email protected]> Time : 2024-07-18 07:40:50 +0000 Message : markdown source builds Auto-generated via {sandpaper} Source : b33dbf2 Branch : main Author : Martino Sorbaro <[email protected]> Time : 2024-07-18 07:39:46 +0000 Message : Merge pull request #927 from kleuveld/replace_checkout_with_restore change the use of git checkout to git restore
Auto-generated via {sandpaper} Source : b33dbf2 Branch : main Author : Martino Sorbaro <[email protected]> Time : 2024-07-18 07:39:46 +0000 Message : Merge pull request swcarpentry#927 from kleuveld/replace_checkout_with_restore change the use of git checkout to git restore
Auto-generated via {sandpaper} Source : 0831397 Branch : md-outputs Author : GitHub Actions <[email protected]> Time : 2024-07-30 06:18:41 +0000 Message : markdown source builds Auto-generated via {sandpaper} Source : b33dbf2 Branch : main Author : Martino Sorbaro <[email protected]> Time : 2024-07-18 07:39:46 +0000 Message : Merge pull request swcarpentry#927 from kleuveld/replace_checkout_with_restore change the use of git checkout to git restore
Auto-generated via {sandpaper} Source : 496d4c4 Branch : md-outputs Author : GitHub Actions <[email protected]> Time : 2024-07-18 07:40:50 +0000 Message : markdown source builds Auto-generated via {sandpaper} Source : b33dbf2 Branch : main Author : Martino Sorbaro <[email protected]> Time : 2024-07-18 07:39:46 +0000 Message : Merge pull request #927 from kleuveld/replace_checkout_with_restore change the use of git checkout to git restore
Auto-generated via {sandpaper} Source : 0831397 Branch : md-outputs Author : GitHub Actions <[email protected]> Time : 2024-07-30 06:18:41 +0000 Message : markdown source builds Auto-generated via {sandpaper} Source : b33dbf2 Branch : main Author : Martino Sorbaro <[email protected]> Time : 2024-07-18 07:39:46 +0000 Message : Merge pull request swcarpentry#927 from kleuveld/replace_checkout_with_restore change the use of git checkout to git restore
I noticed that my version of git ( (2.36.1.windows.1) doesn't prompt the user to use git checkout to restore files. It uses git restore. This is much safer, and can't lead to nasty stuff like detached heads, so probably better for learners. I went ahead and changed all the references to git checkout to git restore.
What did I update: