Workshop Details
Dates: Sept. 11th - 21st, 2023
Time: 8:30am - 12:30pm
Workshop Agenda:
https://ucsdlib.github.io/2023-06-26-UCSD/
Day 2 Instructors:
Kim Thomas (UCSD)
Saulo Soares (UCSD)
Day 2: Session Topic
Topic/Lesson Link
Version Control with Git
Software Installation and Lesson Data Downloads
Refer to Software/Data Downloads: The Carpentries workshops
Workshop Day 2
Sign-in
First Last Name/Email:
- (example) Jane Doe / jdoe01@ucsd.edu
- Glen Spiteri / glenwspiteri@g.ucla.edu
- Tyler Gustafson / tyler_gustafson@berkeley.edu
- Aafrin Pettiwala/ aafrin.pettiwala@ucsf.edu
- Brooklyn Asai / basai@ucsd.edu
- Marie Kennedy / marie.kennedy@lmu.edu
- Jazer Sibley-Schwartz / jazer@ucsb.edu
- Levi Berge-Wells / lbergewells@ucsd.edu
- Ameesha Khan / ameesha_khan@berkeley.edu
- Benjamin Lam / b6lam@ucsd.edu
- Stephanie Ma/ sama@ucsb.edu
- Maksim Zingman / mzingman@ucsd.edu
- Wesley Cheng / wesleycheng@health.ucsd.edu
- Jasper Romero / jwromero@ucsc.edu
- Elise Lelou / elise.lelou@ucsf.edu
- Sophia Toubian / toubian@ucla.edu
- Caitlin Hunter/ hunter@law.ucla.edu
- Hailie Kittner/ hkittner@ucsb.edu
- Marissa Todesco/ mtodesco@ucsd.edu
- Hope Reuschel/ hreuschel@ucmerced.edu
- Rafael Coelho / rvcoelho@berkeley.edu
- Arianna Mordy / ariannamordy@ucla.edu
- ViviAnne Steer/ viviannesteer@berkeley.edu
- Jonathan Morrow / jonmorrow@ucla.edu
- Tamara Pilko / tpilko@ucsc.edu
- Mike Nguyen / mikey@college.ucla.edu
- Nicholas Lam / n2lam@ucsd.edu
- Yiyang Zhang / yiz217@ucsd.edu
- Phoebe Valdes / prvaldes@ucsd.edu
- Nikola Marinos Raitsevits/ nmarinosraitsevits@ucsd.edu
- Sudha Lingam / sudharani.lingam@ucsf.edu
- Julia Dominesey / jdominesey@ucsd.edu
- Melissa Hua / mhua27@g.ucla.edu
- Dhruthick Gowda Mohan / dgmohan@ucsd.edu
- Joshua Love / jlove@ucsb.edu
- Emily Lam / eml048@ucsd.edu
- Ethel Tackie-Yarboi/ ethel.tackieyarboi@ucsf.edu
- Danielle Williamson / danielle.williamson@ucsf.edu
- Seng Chea / schea@college.ucla.edu
- Andrew Martin / amartin462@ucmerced.edu
- Roxanne Corbeil / roxannecorbeil@g.ucla.edu
- Annie Ding / winterknight17@ucla.edu
- Bridgette Degnan / bdegnan@ucsb.edu
- Andreina Soto / andreina@ucsb.edu
- Alyssa Davis / alyssadavis3@g.ucla.edu
- Alice Abate / Alice.Abate@ucsf.edu
- alexis roberto / aroberto@g.ucla.edu
- Nicole Avalon / navalon@ucsd.edu
- Kao Kang Kue Vang / kaokangkue.vang@ucsf.edu
- Caitlin Nordheim / caitlinnordheim@ucsb.edu
- Nivedita Biswas / nivedita.biswas@ucsf.edu
- Devyansh Agrawal / dagrawal@ucsd.edu
- Laura Cheradame / laura.cheradame@ucsf.edu
- Aliza Adler / aliza.adler@ucsf.edu
- Hsiu-yu Yang / hsiuyu@ucla.edu
- Naoko Ohgama / ohgama@berkeley.edu
- Azad Namazie / ynamazie@g.ucla.edu
- Diana Corona-Mata / dcoronamata@health.ucsd.edu
- Kian Bagheri/ kibagheri@ucsd.edu
- Sarah Harper/ sarah.ko.harper@gmail.com
- Kyla Murphy/ kylamurphy@ucsb.edu
- Jennifer Bailey / jlbailey@ucsd.edu
- Eileen Keegan / ekeegan@library.ucla.edu
- Zhibin Cui / zhibin.cui@ucsf.edu
- Cheuk Tam / cheuk.tam@ucsf.edu
- Cody Ashe-McNalley / codyam@ucla.edu
- Shimelis Abebe Tegegn / shte0001@stud.slu.se
- Sule Sahin / Sule.Sahin@ucsf.edu
- Dylan Henson / dhenson@ts.ucla.edu
- Dong Le / dvl006@ucsd.edu
- Carlos Diaz / carlostaddiaz@library.ucla.edu
- David Kamper/ davidgkamper@ucla.edu
- Trivikram Choudhury / tchoudhury@ucsd.edu
- Corinna DesCombaz / Corinna.DesCombaz@ucsf.edu
- Scott Gruber/ sgruber@ioes.ucla.edu
- Raymond U / ru@college.ucla.edu
- Daniella Hanson / dahanson@ucdavis.edu
- Neil Greenleaves / neilgreenleaves@ucsb.edu
- Abby Teitgen / ateitgen@ucsd.edu
- John Hirning / jhirning@college.ucla.edu
- Scott Peterson / speterso@berkeley.edu
- Mary Ringwood / mringwood@ucsb.edu
- Zack Moreau / zmoreau@ucsd.edu
- Elise Chen / jiaying.chen@ucsf.edu
- Michael Ng / mng362@g.ucla.edu
- Leo S / lameds@gmail.com
Day 2 Questions:
Please enter any questions not answered during live session here:
- If we made a mistake entering out Git username, how do we undo it? I have the correct one working, but the "messed up" one still shows up when I do config –list.
- How does "Git Commit -m" command "knows" to add the comment to the mars.txt file specifically. what if there are more files in the directory? Is it because we use "git add mars.txt" command right prior placing it on the staging area?
Day 2 Notes:
Recap: Commands used today:
git init #initialize repository
git status #current status - use this command after every git command
git add #adds files to be tracked, red color file names need to be added
git commit -m "shot message here" #commits changes for tracked files (green color). -m is required for adding a short message
git log #Shows commit information, commit identifier info
git diff #check the version changes
git checkout #used to select previous version commits - commit history
Remote git/github:
git push #pushes changes TO github from local machine
git pull #pulls changes FROM github to local machine
.gitignore file #text file that tells git which file extensions to ignore from versioning
touch # creates blank raw text file, specifying an extension is necessary.
mkdir # creates empty files
Recommend refering to this workflow cheatsheet, https://github.com/hbons/git-cheat-sheet
End of Day 2
OneDrive path:
$ cd ~/OneDrive/Desktop
$ cd C:/Users/Username/OneDrive/Desktop