111 Week 16/17 - Using Git and Gitlab Flashcards

1
Q

Git Repository

A

A repository hosted on a server e.g., by GitHub, GitLab etc.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Local repository

A

The git repo can be cloned onto your computer where you can make changes.
This is a local copy so you will not change the git repo unless you commit changes and push to the repository.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

git clone

A

Creates the local copy of the git repository which you can access and code on.
Takes a parameter to know which repo is being cloned.
E.g., git clone https://scc-source.lancs.ac.uk/username/reponame

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

git pull

A

Will pull any changes to the git repo onto your local repo.
You should do this every time before making changes so that you are working on the most up to date version of the repo.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

git add command

A

Takes a file name as a parameter.
Adds the file to the local repository. Means that it will be included in the git repo when the user commits and pushes to the server.
E.g., git add Driver.java

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

git commit

A

Used to commit a change or set of changes to your local repo.
Acts as a bookmark to to show what changes have been made or as a place to move back to when looking through version history.
parameters:
-m “message”: adds a message to the commit to explain what was changed. Messages should always be relevant and clearly explain the changes made.
-a adds any files that have not been added from the directory to the git repo.
E.g., git commit -m “added background image to level 1”

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

git push

A

Pushes all changes made on the local repo to the git repo. Means that all your changes are not available to be viewed on the GitHub page. Any git pull commands will pull your changes to their local repo.
Has 2 parameters:
- where to push to (usually origin - wherever you cloned from)
- the branch to push to
E.g., git push origin main

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

git status

A

Will show the status of your local repo compared to the Git repo.
Will show if any new files have been added or any existing files have been changed.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

.gitignore

A

To specify if you don’t want to include certain files or types of files in the git repo, use a .gitignore file.
Add file names to the .gitignore file so they will be ignored by commit and push commands.
Can use wildcards to stop certain file types to be excluded such as .class files as you don’t want these in the repo, only source code.
E.g.,
(inside a .gitignore file)
notes.txt
*.class

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

Merge conflicts

A

Happens when someone has updated the file on the server that you have edited locally.
Files in conflict will have both copies of lines of code that differ. Fix this by either choosing the version of the lines you want to keep or by editing the code until it is not in conflict anymore.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

Issues

A

Can create an “issue” on the git page for the repo to specify an issue with the project. Can comment on issues and mark them as read. Can assign developers to an issue.
Helps identify what needs to be worked on, if anyone is working on it and if it has been solved yet.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

Branches

A

Help support longer running changes by allowing developers to “branch” off from the main code.
There is always a main branch in a repo which is the definite “true” version of the code.
Creating a branch creates a subcopy that diverges from the main code at a given commit. This branch can then be worked on independently of the main branch then merged back into main later on.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

git branch

A

Lists the branches in a repo

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

git branch branchName

A

Creates a new branch from main called branchName. Starts at the most recent commit pushed to the repo.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

git checkout branchName

A

Switches to the branch with name branchName

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

git push origin branchName

A

Pushes commits to the branch with name branchName

17
Q

git checkout main
get merge branchName

A

Changes to main branch then merges main with the branch with name branchName.
Possibility for conflicts so need to resolve any that occur as a result of merging branches.

18
Q

Fork

A

A deep copy of a repository.
Allows developers to create a copy of the whole repository that is completely separate from the original repository.
The fork is created on the developers account/organisation, not on the account/organisation that hosted the original repo.

19
Q

Merge requests

A

A way of accepting code from a source not trusted enough to be a collaborator but that could still make useful additions.
Anyone with a fork of a repo can request one of the branches on the fork to be merged to the original repo.
After a merge request has been submitted, the main repo collaborators can review the changes, communicate with the person requesting the merge and then accept or reject the request. This is all done through the website.

20
Q

Continuous integration (CI)

A

A software development practice where developers regularly integrate their code changes into a central repository.
Each change is verified by an automated build and automated tests.
Allows early detection and fixing of integration issues and ensures code is high quality and reliable.

21
Q

CI workflow steps

A

Define the CI workflow: environment, building and testing variables, etc.
1. Developer pushes changes to the version control system (e.g., git)
2. CI server detects the changes and triggers and automated build and test process
3. Results are reported back to the developer.

22
Q

Continuous development (CD)

A

The next step in the CI/CD pipeline.
CD makes it so that any code that passes the CI stage is automatically deployed to a beta production environment.
It automates the deployment process, reducing manual intervention, which results on faster and more reliable software delivery.