Introduction to
Dale Alleshouse
@HumpbackFreak
hideoushumpbackfreak.com
github.com/dalealleshouse
> choco install git -y
> choco install poshgit -y
> choco install tortoisegit -y
> choco install github -y
> git config --global user.name "Dale Alleshouse"
> git config --global user.email "dalleshouse@cngholdings.com"
Demo
> git clone <GIT URL>
> git add <FILE>
> git add --all
> git commit -m "this is a commit message"
> git status
> git pull
> git push
Demo
> git branch <BRANCH_NAME>
> git checkout <BRANCH_NAME>
> git diff
> git add --all
> git commit -m "<COMMIT_MESSAGE>"
> git push --set-upstream origin <BRANCH_NAME>
> git push origin :<BRANCH_NAME>
> git checkout master
> git branch -D <BRANCH_NAME>
Demo
> git checkout <TARGET_BRANCH>
> git merge <SOURCE_BRANCH>