Versioning
Tools
Nonsense
This & That
100

Which areas exist in Git?

working copy
staging area
commit area

100

Where do you clone your Git repository into (directory, base directory for working with Talos)?

C:\Git\team-talos

100

Name three Marvel Avengers member

Captain America, Hulk, Thor, Black Widow, ...

100

What was Santander named after?

A village in Spain "Santander".

200

What does the fetch command do in Git?

Update your local repository with the remote one

200

What is JetBrains?

A company

200

"Schnitzel day" in Santander canteen

Thursday

200

Current Chairman of Santander Bank SA?

Ana Patricia Botín-Sanz de Sautuola y O'Shea

300

Command to delete a branch in Git?

git branch -d <branchname>

300

Are there data types in Python?

Yes (Boolean Types, Numeric Types, Sequence Types,...)

300

What makes time travel possible in the first place?

Flux compensator

300

Which books can you borrow related to Talos?

BDD/Gherkin (Discovery, Formulation), Python 

400

Command to switch branches in Git?

git checkout <branchname>

400

For what do we need the Black PlugIn in PyCharm?

To ensure consistency of source code format

400

What is the name of the Linux penguin?

Tux

400

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

500

Git command to create a branch and switch directly into it?

git checkout -b <branchname>

500

What does the venv directory include?

Libraries, Python version

500

How many Indiana Jones movies were filmed until now?

5

500

What does the pipe operator "|" do?

Takes the output from one command and uses it as the input for the next command