InterviewStack.io LogoInterviewStack.io

Version Control and Developer Tooling Questions

The everyday toolchain of software work: version control with Git (branching, merging, rebasing, conflict resolution, using git bisect to find a regression), command-line and shell proficiency for day-to-day navigation, log inspection, and troubleshooting, IDE and editor workflows, build systems and package/dependency management (npm, Maven, pip, Gradle, CocoaPods, and embedded/cross-compilation toolchains), and the growing practice of AI-assisted coding: using, reviewing, and verifying AI-generated code and tests. Deliberately generic across languages and stacks; language- and domain-specific frameworks live in their own categories. This topic covers a developer's individual command of these tools, not: writing durable shell automation and glue scripts (Shell Scripting and Automation owns that), producing, versioning, and publishing build artifacts or container images (Build Automation and Artifact Management owns that), release cadence and change governance (Release Management and Change Control owns that), or diagnosing a live production incident end to end (Performance Troubleshooting and Incident Response and the Observability topics own that).

EasyTechnical
44 practiced

Explain the difference between git clone, git fetch, git pull and git push. In what scenarios would you use fetch + merge vs pull --rebase? Describe risks and common pitfalls for a collaborative team.

HardTechnical
46 practiced

main is protected and requires review plus passing CI before merge, but you need to ship an urgent hotfix to production right now. Walk through how you'd get the fix out safely without bypassing the protections that exist for good reason, and how you'd keep the team informed.

EasyTechnical
40 practiced

You want to check an HTTP endpoint's status code and total time taken from the command line, suppressing regular output and following redirects. Write the curl command that returns only the HTTP status code and total time in seconds and explain the key curl options you used.

EasyTechnical
62 practiced

You're the on-call SRE and a service process is unresponsive. Using only local CLI tools and man pages, describe how you'd discover available Unix signals, learn their meanings, and decide whether to send SIGTERM or SIGKILL. Include the specific commands you would run to list signals and to read man-page sections for signals and kill semantics, and explain your decision criteria for which signal to use in production.

HardTechnical
42 practiced

Describe how to implement client-side and server-side Git hooks to block commits that contain secrets (passwords/API keys). Include examples of tools or libraries you would use, where the hooks run, and how you would handle false positives to avoid developer friction.

Unlock Full Question Bank

Get access to all Version Control and Developer Tooling interview questions and detailed answers.

Sign in to Continue

Join thousands of developers preparing for their dream job.