"In software development, Git is a distributed revision control and source code management (SCM) system with an emphasis on speed. Git was initially designed and developed by Linus Torvalds for Linux kernel development in 2005. Every Git working directory is a full-fledged repository with complete history and full version tracking capabilities, not dependent on network access or a central server." — Wikipedia
ssh-keygen -t rsa -b 4096
$HOME/.ssh/id_rsa.pub
sudo apt-get install git
git config --global user.name "Your name here"
git config --global user.email "Your email here"
README.txt
) and write something in it.git init
git add README.txt
git commit -m 'Your comment here'
git remote add origin git@git.dei.uc.pt:your_username_here/your_project.git
git push -u origin main
ssh-keygen -t rsa -b 4096
git config --global user.name "Your name here"
git config --global user.email "Your email here"
yes
and click OK.master
) and click Push.