Which areas exist in Git?
working copy
staging area
commit area
Where do you clone your Git repository into (directory, base directory for working with Talos)?
C:\Git\team-talos
Name three Marvel Avengers member
Captain America, Hulk, Thor, Black Widow, ...
What was Santander named after?
A village in Spain "Santander".
What does the fetch command do in Git?
Update your local repository with the remote one
What is JetBrains?
A company
"Schnitzel day" in Santander canteen
Thursday
Current Chairman of Santander Bank SA?
Ana Patricia BotÃn-Sanz de Sautuola y O'Shea
Command to delete a branch in Git?
git branch -d <branchname>
Are there data types in Python?
Yes (Boolean Types, Numeric Types, Sequence Types,...)
What makes time travel possible in the first place?
Flux compensator
Which books can you borrow related to Talos?
BDD/Gherkin (Discovery, Formulation), Python
Command to switch branches in Git?
git checkout <branchname>
For what do we need the Black PlugIn in PyCharm?
To ensure consistency of source code format
What is the name of the Linux penguin?
Tux
Explain the following Git commands:
git add
git commit
git push
add: add to staging area
commit: add to commit area
push: add to remote repository
Git command to create a branch and switch directly into it?
git checkout -b <branchname>
What does the venv directory include?
Libraries, Python version
How many Indiana Jones movies were filmed until now?
5
What does the pipe operator "|" do?
Takes the output from one command and uses it as the input for the next command