Modules 3 Software and 4 git
Modules 3 Software and 4 git
z
Version Control
& Software
z
Version Control
Do no harm!
How can many programmers work on the same team without
killing each others code and killing each other?
You need rules and a traffic cop
Enter git
z
git
Create a folder
Add some files to the folder
Anything in the files will be fine for
now
z
Create the Repo
Create these files in VS Code and test to see that they run
Hello.c // C code
Hello.js // JavaScript
Hello.sh # Bash shell script
Hello.py # Python
z
hello.c
#include <stdio.h>
#!/bin/bash
import sys