UF Research Computing
Matt Gitzendanner
magitz@ufl.edu
https://git-scm.com/
and more...
Download and install git:
https://git-scm.com/
e.g.: github.comÂ
[magitz@login3 ufrc_demo]$ echo "# ufrc_demo" >> README.md [magitz@login3 ufrc_demo]$ git init Initialized empty Git repository in /home/magitz/ufrc_demo/.git/ [magitz@login3 ufrc_demo]$ git add README.md [magitz@login3 ufrc_demo]$ git commit -m "first commit" [master (root-commit) ed77e61] first commit  1 file changed, 1 insertion(+)  create mode 100644 README.md [magitz@login3 ufrc_demo]$ git branch -M main [magitz@login3 ufrc_demo]$ git remote add origin git@github.com:magitz/ufrc_demo.git [magitz@login3 ufrc_demo]$ git push -u origin main Counting objects: 3, done. Writing objects: 100% (3/3), 227 bytes | 0 bytes/s, done. Total 3 (delta 0), reused 0 (delta 0) To git@github.com:magitz/ufrc_demo.git  * [new branch]   main -> main Branch main set up to track remote branch main from origin. [magitz@login3 ufrc_demo]$ Â
git branch workshop
git checkout workshop
git checkout -b workshop
or
Host your site at github.com (for free)!