Intern — Junior
Have you used version control systems like Git in your projects?
sobes.tech AI
Answer from AI
Yes, experience with Git usually includes:
- Initializing a repository (
git init) - Cloning a remote repository (
git clone) - Creating and switching between branches (
git branch,git checkout) - Adding changes to the index (
git add) - Committing changes (
git commit) - Pushing changes to a remote server (
git push) - Pulling updates from a remote repository (
git pull)
Git helps track code changes, work in a team, and manage project versions.
Basic commands example:
git clone https://github.com/user/repo.git
cd repo
# create a new branch
git checkout -b feature-branch
# make changes, then
git add .
git commit -m "Added new feature"
git push origin feature-branch