Majibu na maswali ya tathmini ya ustadi wa LinkedIn - Git
Git is a popular version control system that allows developers to collaborate on projects, kufuatilia mabadiliko, na udhibiti kanuni. Ikiwa unataka kujifunza jinsi ya kutumia Git kwa ufanisi, you may be interested in taking a LinkedIn skill assessment test.
This test is designed to measure your proficiency in Git and help you showcase your skills to potential employers. Katika chapisho hili la blogi, I will share with you some of the questions and answers from the LinkedIn skill assessment test juu Git. You can use these as a reference to prepare for the test or to improve your knowledge of Git.
Q1. Comment pouvez-vous vérifier votre version actuelle de Git ?
- git –AZ-500
- git –Sakinisha na upeleke mfumo kamili na
- git –chaguo
- git –sasa
Quelle commande vous permet de créer une connexion entre un dépôt local et distant ?
Q2.- git remote add new
- git remote add origin
- git remote new origin
- git remote origin
Décrivez ce que font ces commandes Git dans l’historique des commits :
Q3.git reset --hard HEAD~5
git merge --squash HEAD@{1}
- Elles réinitialisent HEAD au cinquième commit dans le dépôt, puis fusionnent avec la branche principale.
- HEAD de la branche actuelle est réinitialisé en arrière de cinq commits, puis les commits précédents sont écrasés en un seul commit.
- Elles suppriment les cinq derniers commits.
- Elles fusionnent les cinq derniers commits dans une nouvelle branche.
Explication :
git reset --hard HEAD~5
réinitialise la branche actuelle au commit juste avant les 5 derniers (voirman gitrevisions
pour plus de détails sur cette notation et d’autres alternatives intéressantes commeHEAD@{2 days ago}
). Comme il s’agit d’une réinitialisation dure, elle écrasera également tous les changements dans l’arborescence de travail. Voirman git-reset
.git merge --squash HEAD@{1}
HEAD@{1} est là où la branche était juste avant la commande précédente (encore une fois, voirman gitrevisions
). Cette commande configure l’état de l’index comme il le serait juste après une fusion à partir de ce commit. Toute cette opération pourrait être une manière de prendre 5 commits d’une branche dans laquelle vous avez commencé une nouvelle fonctionnalité et de les écraser en un seul commit, un commit significatif.
Votre projet actuel comporte plusieurs branches : bwana, beta et push-notifications. Vous venez de terminer la fonctionnalité de notification dans la branche push-notifications et vous souhaitez la valider dans la branche beta. Comment pouvez-vous y parvenir ?
Q4.- Basculez sur la branche push-notifications et exécutez git merge beta.
- Basculez sur la branche master et exécutez git merge beta -> push-notifications.
- Supprimez la branche push-notifications et elle sera automatiquement validée dans la branche master.
- Basculez sur la branche beta et exécutez git merge push-notifications.
Quelle est la signification de la commande suivante ?
Q5.git add -A
- Tous les fichiers nouveaux et mis à jour sont ajoutés à la zone de transit.
- Les fichiers sont ajoutés à la zone de transit dans l’ordre alphabétique.
- Tous les fichiers nouveaux sont ajoutés à la zone de transit.
- Seuls les fichiers mis à jour sont ajoutés à la zone de transit.
Que va afficher la commande suivante dans le Terminal ?
Q6.git remote -v
- Une liste des dépôts distants et de leurs URL.
- La version actuelle de Git que vous exécutez.
- Un éditeur en ligne pour modifier les dépôts distants.
- Les cinq dernières versions de Git que vous avez installées.
En regardant les commandes suivantes, décrivez ce qui se passe.
Swali 7.git checkout feature-user-location
git cherry-pick kj2342134sdf090093f0sdgasdf99sdfo992mmmf9921231
- Le commit est marqué pour une publication sur la branche feature-user-location.
- Un commit est copié de sa branche d’origine vers la branche feature-user-location.
- Le commit est sélectionné comme nouvelle tête de l’historique des commits.
- Un commit est copié de la branche feature-user-location vers la branche master.
- La branche est basculée sur la branche feature-user-location, et le commit spécifié est appliqué à la branche.
Explication :
‘git checkout feature-user-location’ bascule sur la branche ‘feature-user-location’. ‘git cherry-pick kj2342134sdf090093f0sdgasdf99sdfo992mmmf9921231’ applique les modifications du commit spécifié (‘kj2342134sdf090093f0sdgasdf99sdfo992mmmf9921231’) à la branche actuelle (feature-user-location). Cela revient en fait à copier le commit de sa branche d’origine dans la branche feature-user-location. Ainsi, cette séquence de commandes permet de cherry-pick un commit spécifique sur la branche feature-user-location.
Que fait la commande suivante dans le référentiel Git ?
Q8.git reset --soft HEAD^
- Elle supprime tous les commits précédents et réinitialise l’historique du référentiel à son état initial.
- Elle réinitialise la branche de travail au premier commit.
- Elle maintient HEAD au commit actuel mais efface tous les commits précédents.
- Elle positionne HEAD sur le commit précédent et laisse les modifications du commit annulé dans la zone de transit.
Vous trouvez un bogue dans votre projet, mais vous ne pouvez pas localiser où il a été introduit dans l’historique des commits. Comment diagnostiqueriez-vous ce
Q9.problème ?
- Revenez manuellement en arrière dans votre historique des commits.
- Utilisez git search -diff pour comparer tous les commits de l’historique de votre référentiel.
- Exécutez un rebasage Git pour trouver le commit problématique.
- Utilisez git bisect pour comparer le commit problématique à un commit antérieur qui fonctionne comme prévu.
Pourquoi utiliseriez-vous la commande suivante ?
Q10.git rebase -i HEAD~10
- Pour effectuer une recherche comparative des 10 derniers commits pour trouver les différences.
- Pour répertorier les 10 derniers commits et les modifier avec les commandes squash ou fixup.
- Pour supprimer les 10 derniers commits et réinitialiser HEAD.
- Pour mettre en cache localement les 10 derniers commits.
Pourquoi utiliseriez-vous un crochet pre-receive dans votre référentiel distant ?
Q11.- Vous ne le feriez pas, vous l’utiliseriez dans le référentiel local.
- Pour exécuter un script lorsque un dépôt distant reçoit une poussée qui est déclenchée avant que les références ne soient mises à jour.
- Pour exécuter un script après les mises à jour effectuées dans le référentiel distant.
- Pour déboguer toutes les balises de commit et les versions de publication.
Quelle option pouvez-vous utiliser pour appliquer des configurations Git dans tout votre environnement Git ?
Q12.-
--all
-
--master
-
--global
-
--update
Comment pourriez-vous fusionner plusieurs commits en un seul sans utiliser git merge –squash ?
Q13.- Mise en cache
- Vous ne le pouvez pas. git merge –squash est la seule commande Git pour cette opération.
- Rebaser
- Reflog
Si vous avez cloné un référentiel Git existant, qu’arriverait-il ?
Q14.- Une nouvelle copie écraserait le référentiel central.
- Une copie du référentiel serait créée sur votre machine locale.
- Rien, le clonage n’est pas une fonction Git prise en charge.
- Une copie du référentiel serait créée sur la plateforme d’hébergement.
Comment pouvez-vous afficher une liste des fichiers ajoutés ou modifiés dans un commit spécifique ?
Q15.- Trouvez le commit dans le référentiel distant, car c’est le seul endroit où ce type d’information est stocké.
- Utilisez la commande
diff-tree
avec le hachage du commit. - Exécutez
git commit --info
avec le hachage du commit. - Accédez aux données du stash du commit avec
git stash
.
What files is this .gitignore programmed to leave out?
Q16.#.swift
build/
*.txt
*.metadata
- All files with a .swift, .txt, or metadata file extension, as well as the entire build directory
- Only the build directory
- All files in the build directory, as well as files ending with .txt or .metadata
- Only files with .swift and .txt extensions.
Hacks za nyumbani za DIY za kusafisha mfumo wako wa kupumua
A line starting with #
serves as a comment. Kwa hivyo # .swift
does not do anything. Tazama man gitignore
.
After you make changes to a local repository, you run the following command. What will this do?
Q17.git commit -a -m "Refactor code base"
- Hakuna kitu, you can’t use multiple options in the same command
- Adds all new files to the staging area
- Commits all new files with a message
- Adds all modified files to the staging area, then commits them with a message
After checking your git status you get the following output, which shows the file beta-notes.js in the commit but also unstaged. How can this situation occur?
Q18.Change to be committed:
(use "git reset HEAD <file>..." to unstage)
modified: beta-notes.js
Changes not staged for commit:
(use "git add <file>..." to update what will be committed)
(use "git checkout --<file>..." to discard changes in working directory)
modified: beta-notes.js
- There were two copies of beta-notes.js but one was deleted
- beta-notes.js was staged, then modified afterwards, creating two different versions of the file
- Two copies of beta-notes.js were created, but only one is being tracked
- There are two tracked copies of beta-notes.js, but one was removed from the commit
Hacks za nyumbani za DIY za kusafisha mfumo wako wa kupumua
Where are files stored before they are committed to the local repository?
Q19.- Saved files
- git documents
- Staging area
- git cache
Hacks za nyumbani za DIY za kusafisha mfumo wako wa kupumua
What commands would you use to force an overwrite of your local files with the master branch?
Q20.- ⠀
git pull --all
git reset --hard origin/master
- ⠀
git pull -u origin master
git reset --hard master
- ⠀
git pull origin master
git reset --hard origin/myCurrentBranch
- ⠀
git fetch --all
git reset --hard origin/master
Kumbuka: – The command pull
ni fetch
followed by either merge
au rebase
(kwa kesi hii, merge
). We don’t want to merge. Merge would be an action to our repository. We just want to overwrite our local files.
Which statement is true when you use the git add -A command?
Q21.- Only new files in the working directory are staged to the index.
- All new and updated files from the working directory are staged to the index.
- All files in the working directory are staged to the index in alphabetical order.
- Only updated files in the working directory are staged to the index.
You find that your project has a tag and branch both named push-notifications, which causes confusion when trying to print out given reference. How can you specify which branch you want to look at?
Q22.- use git show refs/push-notifications
- use git show push-notifications
- use git show head/refs/push-notifications
- use git show refs/head/push-notifications
Hacks za nyumbani za DIY za kusafisha mfumo wako wa kupumua
Your team lead needs a list of all commits that will be moved before you perform a rebase. Which command can you use to access that information?
Q23.- git rebase -log
- git rebase -i
- git rebase -verbose
- git rebase -all
What is the operation doing given the Git commands below?
Q24.git bisect start
git bisect bad 5d41402abc4b2a76b9719d911017c592
git bisect good 69faab6268350295550de7d587bc323d
- It runs a merge of a good commit that is discovered using a known bad commit and known good commit
- It marks a commit for deletion using a known bad commit and known good commit to determine which commit introduced a bug
- It defines a bad commit and resets the HEAD using a known bad commit and known good commit
- It performs a binary search using a known bad commit and known good commit to determine which commit introduced a bug
In a situation where you have several commits for a single task, what is the most efficient way to restructure your commit history?
Q25.- Cherry pick the related commits to another branch.
- Delete the task commits and recommit with a new message.
- Squash the related commits together into a single coherent commit.
- Stash the related commits under a new hash.
Hacks za nyumbani za DIY za kusafisha mfumo wako wa kupumua
Which of the following is true of the git push command?
Q26.Kumbuka: Which statement is true of the git push
amri?
- By default a push doesn’t send tags to the remote repository.
- Commits can only be tagged when they are created.
- Tags are pushed to the remote repository with their respective commits.
- Only annotated tags are automatically pushed to the remote repository with a commit.
Hacks za nyumbani za DIY za kusafisha mfumo wako wa kupumua
After pushing commits to the remote repository for the first time using the command below, what shorthand command can you use in future?
Q27.git push -u origin master
- git push master
- git push origin
- Same as before, git push -u origin master
- git push
Hacks za nyumbani za DIY za kusafisha mfumo wako wa kupumua
How would you create a custom shortcut or command across your Git environment?
Q28.- Run
git hotfix
with the shortcut name. - Assign a shortcut or command using git options file.
- Tumia
git custom-key
amri. - Create an alias using the
git config
amri.
Hacks za nyumbani za DIY za kusafisha mfumo wako wa kupumua
What is the status of the beta-notes.js file in the following output?
Q29.Changes not staged for commit:
(use "git add <file>..." to update what will be committed)
(use "git checkout -- <file>..." to discard changes in working directory)
modified: beta-notes.js
- beta-notes.js is untracked and has been modified.
- beta-notes.js is a tracked file and has been modified, but has not been added to the current commit.
- beta-notes.js is untracked but has been added to the current commit.
- beta-notes.js is tracked, and the modified file has been added to the current commit.
Hacks za nyumbani za DIY za kusafisha mfumo wako wa kupumua
What command would let you modify your previous commit?
Q30.- –kurekebisha
- –quickfix
- –rekebisha
- –amend
[Hacks za nyumbani za DIY za kusafisha mfumo wako wa kupumua](https://git-scm.com/book/en/v2/Git-Tools-Rewriting-History
Acha jibu
Lazima Ingia au kujiandikisha kuongeza maoni mapya .