Go to file
2022-05-13 20:52:39 +02:00
adds update 2022-05-13 20:52:39 +02:00
dsvpn-master update 2022-05-13 20:52:39 +02:00
templates update 2022-05-13 20:52:39 +02:00
TweetNaCL NEW 2021-10-03 18:56:39 +02:00
VPN NEW 2021-10-03 18:56:39 +02:00
WireGuard update 2022-05-13 20:52:39 +02:00
.gitignore NEW 2021-10-03 18:56:39 +02:00
linu_networking.zip update 2022-05-13 20:52:39 +02:00
README.md update 2022-05-13 20:52:39 +02:00

Author

Organization: Technical University of Kosice (TUKE),

Department: Department of Electronics and Multimedia Telecommunications (DEMT/KEMT),

Faculties: Faculty of Electrical Engineering and Informatics (FEI),

Feld of study: Informatics,

Study program: Computer Networks,

Year: 2021 - 2023,

Author: Bc. Marek Rohač-- MR,

Contact: marek.rohac@student.tuke.sk marroh004@gmail.com

ALL RIGHTS RESERVED.

Informations

This repository was created to stored all data connected with a process of preparing Diploma Work.

Updates

Last modification: 03.10.2021 - MR

Contributing

As first download git app for your platform --> https://git-scm.com/downloads

Git Configure

Global Configuration of git

    git config --global user.name "Name_of_contributor"
    git config --global user.email mail_of_contributor@example.com

Add ssh key to your git account. S T E P S

  1. Generate keys
  ssh-keygen -t ed25519 -C "comment"      

After command just hit enter (~3x).

  1. Translate your public key
  cat ~/.ssh/id_ed25519.pub     
  1. Copy your PK a insert into your Account-->SSH-->Add key

For more informations visit --> https://docs.gitlab.com/ee/ssh/

Cloning Repository

git clone git@github.com:mr171hg/DiplomaProject.git

Add & Push new data

git branch name_of_new_branch
git checkout name_of_new_branch
git add -A
git commit -m "name_of_change"
git push --set-upstream origin name_of_new_branch