Pages

Git and GitHub

GitHub

Fork the original repository

Git

git clone https://github.com/MY_USERNAME/MY_FORK.git
git checkout DEVELOPMENT_BRANCHNAME
git branch
git remote add upstream https://github.com/ORIGINAL_OWNER/ORIGINAL_REPOSITORY.git
git remote -v

git push -u origin DEVELOPMENT_BRANCHNAME
git fetch upstream

git --version
git config --list
git config --global credential.helper wincred

Remove file from git without deleting file

git rm --cached filename