cd-> [ChangeDirectory] used the navigate through the computer foldersls-> [LiSt Directory] used to list the contents of the current directorypwd-> [PrintWorkingDirectory] used to display the current directory pathmkdir-> [MakeDirectory] used to create a new directorymv-> [Move] used to move files from one directory into anothercp-> [CoPy] used to copy files from one directory into another
git init-> used to initialize a new git repository inside a foldergit add .-> used to add all the files in the current diretory into the gitstage areagit commit -m 'message'-> used to create a commit with all the files currently on thestage areagit push origin main-> used to push all commits to the origin server (usually github) for themainbranchgit pull origin main-> used to pull all the changes from the origin server (usually github) for themainbranchgit status-> used to check the current status of the git repository
cd ~/Documents/GitHubmkdir your-projectcd your-projectgit initopen .git add --allgit commit -m 'message'https://github.com/new
9.3 Run the instructions on the Github screen on the section "...or push an existing repository from the command line" in your termal
git remote add origin git@github.com:raul-gracia/your-project.git
git branch -M main
git push -u origin main






