Checkout Single File from Another Branch
Beginner Mode
Start your terminal to use beginner mode.
Scenario
You are working on the main branch and need to update config.json with changes that currently exist only on the feature-settings branch, without switching your current context.
Task
Navigate to /home/interview/repo and retrieve the config.json file from the feature-settings branch into your current working directory.
Example
# Before (Old config on main)
$ cat config.json
{ "version": "1.0.0" }
# After (New config retrieved)
$ cat config.json
{ "version": "2.0.0" }
Terminal requires a larger screen
Open this page on a desktop or tablet (≥ 768px) to launch the terminal and practice hands-on.
Linux Terminal Environment
Write and execute your solution in the terminal below.
Track
| Question | Difficulty | Company | Access |
|---|
Need more practice in this area? Explore more questions →
Twilio