Skip to content

Latest commit

 

History

History
 
 

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 

README.md

Git Installation Scripts

This repository contains two scripts for checking and installing Git on your system: one for Unix-like systems (Bash script) and one for Windows (Batch script). Additionally, there's a tutorial script for learning Git basics.

Contents

  • git_tutorial.sh: Tutorial script for learning Git.

Setting Up and Using the Git Tutorial Script

Prerequisites

  • A working installation of Git
  • Bash shell
  • The git_tutorial.sh script

Steps

  1. Create a New Folder: Create a new folder named testGitRepo.
mkdir testGitRepo
  1. Move the Script: Move git_tutorial.sh into the testGitRepo folder.
mv /path/to/git_tutorial.sh /path/to/testGitRepo/
  1. Navigate to the Folder: Change your directory to testGitRepo.
cd /path/to/testGitRepo
  1. Set Script Permissions: Make git_tutorial.sh executable.
chmod +x git_tutorial.sh
  1. Run the Tutorial Script: Start the tutorial by executing the script.
./git_tutorial.sh