Removendo um arquivo e seu histórico de um repositório git git filter-branch -f --index-filter 'git rm --cached --ignore-unmatch FileName' HEAD git push origin master --force
First, configure original repository ( https://help.github.com/articles/configuring-a-remote-for-a-fork/ ) $ git remote add upstream https://github.com/owner/repo_name After, fetch update, merge and push ( https://help.github.com/articles/synci
Git config para acessar múltiplos repositórios Location: ~/.ssh/config Host git.mobilemind.com.br Hostname git.mobilemind.com.br User username Port 22 IdentityFile ~/.ssh/id_rsa
Git error fatal: refusing to merge unrelated histories Fix $ git pull origin master --allow-unrelated-histories