12 из 85 вопросов — случайная выборка · Ответьте на все и узнайте свой результат
Какая последовательность команд правильно инициализирует новый репозиторий и записывает первый снимок файла app.js?
app.js
git start → git track app.js → git save -m 'first commit'
git start
git track app.js
git save -m 'first commit'
git init → git add app.js → git commit -m 'first commit'
git init
git add app.js
git commit -m 'first commit'
git init → git commit app.js -m 'first commit'
git commit app.js -m 'first commit'
git create → git stage app.js → git commit -m 'first commit'
git create
git stage app.js