You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
Marek Rohač 6e8c986e23 update 2 years ago
TweetNaCL NEW 3 years ago
VPN NEW 3 years ago
WireGuard update 2 years ago
adds update 2 years ago
dsvpn-master update 2 years ago
templates update 2 years ago
.gitignore NEW 3 years ago
README.md update 2 years ago
linu_networking.zip update 2 years ago

README.md

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