git bash code example

Example 1: conemu git bash

git-cmd.exe --no-cd --command=usr/bin/bash.exe -l -i

Example 2: git bash in cmd

"C:\Program Files\Git\bin\sh.exe" --login

Example 3: git pull

git pull <remote> <branch>

Example 4: Git

Git is a distributed version-control system for tracking changes in source
code during software development.

It is designed for coordinating work among programmers, but it can be used to
track changes in any set of files.

Its goals include speed, data integrity, and support for distributed,
non-linear workflows.

Example 5: git pull

#Basic command, get changes of current branch to remote repo
git pull
#When working with others, I usually stash my local changes
#before pulling in order to avoid conflict commits.
git stash
git pull 
git stash pop #Reapply my local changes, eventually merge confl

Example 6: Git bash

mv  -v ~/Downloads/* ~/Videos/