download git for windows code example

Example 1: how to update git on windows

C:\> git update-git-for-windows

Example 2: download git for windows

Downloading git setup.exe 32 bit -version copy the link below 
https://github.com/git-for-windows/git/releases/download/v2.31.1.windows.1/Git-2.31.1-32-bit.exe

Downloading git setup.exe 64 bit version -version copy the link below 
https://github.com/git-for-windows/git/releases/download/v2.31.1.windows.1/Git-2.31.1-64-bit.exe

Downloading git portable -version 32 bit copy the link below
https://github.com/git-for-windows/git/releases/download/v2.31.1.windows.1/PortableGit-2.31.1-32-bit.7z.exe

Downloading git portable -version 64 bit copy the link below
https://github.com/git-for-windows/git/releases/download/v2.31.1.windows.1/PortableGit-2.31.1-64-bit.7z.exe

Example 3: install git bash in ubuntu

$ sudo apt-get install install-info

Example 4: git

git init
git add . 
git commit -m "First commit"
git remote add origin "URL of repository"
git push --set-upstream origin master

Example 5: git bash download

Install: https://git-scm.com/downloads
type "clear" / ctrl + l (windows - Linux) / Command + K (Mac)
help - show all comands
help commandName - help about a specific command

Working with Directories:
ls - list / list the contents on your current directory
la -la - Give more informations about list 
pwd - Print Working directory / Print the path to the working directory
cd directory - Change directory / Move between folders - Relative Path (just folters directly contained in the one you are currently)
cd /firstDirectory/secondDirectory/FinalDirectory - Absolute Path (search a directory anywhere in pc)
cd .. - Go back a directory
cd ~ - return to home directory
mkdir - make directory / create a new directory+
mkdir -v - Make directory + add lines that say you created a directory
touch - Create a file (or multiple) or "touch", change a file (update when it was last modified)
rm - Remove / Delete a File (forever)
rm -rf - Remove recursive force / Delete a directory add all file nested in the directory (also other directories)
rmdir - remove a directory (only work on empty folders)

Tags:

Misc Example